/* Styles for the modal */
.modal {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
body{
    background-color: #f7f3f3;
}
.modal-content {
    display: flex;
    opacity: 0.9;
    text-align: center;
    color: #fff;
    background-color: #6f9fbf; /* Adjust color */
    margin-left: 5% ;
    padding: 15px;
    border: 2px solid #2980b9; /* Adjust color */
    border-radius: 10px;
    width: 50%;
}
.modal-content h3{
   margin: 0;
   padding-right: 10px;

}
.bottom-modal-content {
    margin-top: 2%;
    display: flex;
    opacity: 0.9;
    text-align: center;
    color: #fff;
    background-color: #a7ca75; /* Adjust color */
    margin-left: 5% ;
    padding: 15px;
    border: 2px solid #8dca80; /* Adjust color */
    border-radius: 10px;
    width: 50%;
}

.bottom-modal-content h3 {
    margin: 0;
    padding-right: 10px;
 
 }


.close {
    color: #ccc;
    float: right;
    font-size: 24px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* Add your styles here */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Adjust font */
    margin: 0;
}

.table-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left-column, .right-column {
    width: 48%;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.row {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

.bottom-button {
    margin-top: 20px;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

input[type=text] {
    border-radius: 5px;
    padding: 2px;
    color: #333;
}
