/* Essential functionality styles only */

/* Modal functionality */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: inherit;
}

.modal-content {
    background-color: inherit;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid black;
    width: 400px;
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Table functionality */
#directoryTable {
    width: 100%;
    border-collapse: collapse;
}

#directoryTable th, #directoryTable td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

#directoryTable td:not(.delete-cell) {
    cursor: pointer;
}

/* Delete button functionality */
.delete-btn {
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    padding: 2px 4px;
    font-size: 12px;
}

.delete-cell {
    width: 40px;
    text-align: center;
    cursor: default;
}