/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .bevi-dashboard-container {
    padding: 20px 16px 16px;
    border-color: #6e99d2 #d7d7d7 #d7d7d7;
    border-style: solid;
    border-width: 4px 1px 1px;
    border-radius: 6px;
    background-color: #ffffff;
    margin-bottom: 30px;
}
.bevi-dashboard-subcontainer {
    padding: 20px 16px 16px;
    border-color: #d7d7d7;
    border-style: solid;
    border-width: 1px;
    border-radius: 6px;
    background-color: #ffffff;
}
.bevi-dashboard-field {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2px;
}
.bevi-dashboard-label {
    box-sizing: border-box;
    padding: 2px;
    width: 30%;
}
.bevi-dashboard-value {
    box-sizing: border-box;
    padding: 2px;
    width: 70%;
    color: #000;
}
@media (max-width: 480px) {
    .bevi-dashboard-label, .bevi-dashboard-value {
        width: 100%;
    }
}


.bevi-dashboard-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.bevi-dashboard-row {
    display: flex;
}


.bevi-dashboard-column {
    /* flex: 1; / * Makes each column take equal width */
    display: table-cell;
    padding: 2px 1px;
    border: 0px solid #ccc;
    text-align: left;
    width: 13%;  /* Set the width of each of the last 3 columns to equally split the remaining 75% */
}
.bevi-dashboard-column-1 {
    width: 45%; /* Set the width of the first column to 25% */
}
.bevi-dashboard-column-blank {
    display: table-cell;
    padding: 2px 1px;
    border: 0px solid #ccc;
    text-align: left;
    width: 10px;   /* Set the width of each of the last 3 columns to equally split the remaining 75% */
}
/* Added styles for cursor */
.bevi-dashboard-column-blank:hover .bevi-dashboard-column-1:hover{
    cursor: default; /* This sets the cursor to the arrow pointer when hovering over the element */
}

.header .bevi-dashboard-column {
    font-weight: bold;
    background-color: #f5f5f5;
}


.bevi-dashboard-button-container {
    text-align: right;
    padding: 10px 0;
}

#toggleDiv {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
}
#hiddenDiv {
    display: none; /* Initially hidden */
    border: 0px solid #ccc;
    padding: 0px;
    margin-top: 10px;
}




.bevi-dashboard-field textarea {
    width: 100%;
    margin: 10px 0;
    resize: vertical;
}


.notes-form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.notes-form textarea {
    width: 100%;
    margin: 10px 0;
    resize: vertical;
}

.notes-form button {
    align-self: flex-end;
    margin-top: 10px;
}

/* Modal Styles */
.modal {
    display: none; 
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
}

