/* modal.css */
#modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.modal-footer {
    text-align: center; /* Center-align the button */
    padding: 10px; /* Add padding for spacing */
}

.editable-cell {
    background-color: #eef; /* Light blue background, for example */
    border: 1px solid #aaf; /* Distinguished border */
    padding: 5px;
    /* Add other styling as needed */
}

.specificTable table {
    width: 80%;
    margin: auto; /* Center the table */
    border-collapse: collapse;
}

.specificTable th, .specificTable td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

.specificTable th {
    background-color: #f2f2f2;
}

.specificTable tr:nth-child(even) {
    background-color: #f9f9f9;
}

.specificTable tr:hover {
    background-color: #eaeaea;
}

.close-modal-button {
    padding: 10px 20px;
    background-color: #444;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px; /* Add space above the button */
}

.close-modal-button:hover {
    background-color: #555;
}

.explain {
    font-size: 14px;
    font-display: italic;
    color: #777;
    padding-bottom: 14px;
}