/* Dark overlay behind modal */
#dtOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

/* Modal container */
#dtModal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 300px;
    font-family: Arial, sans-serif;
}

/* Modal title */
#dtModal h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

/* Input fields */
#dtModal label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}

#dtModal input[type="text"],
#dtModal input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Buttons */
#dtModal button {
    padding: 8px 14px;
    margin-top: 10px;
    margin-right: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

#dtSaveBtn {
    background-color: #28a745;
    color: white;
}

#dtCancelBtn {
    background-color: #dc3545;
    color: white;
}

#dtSaveBtn:hover {
    background-color: #218838;
}

#dtCancelBtn:hover {
    background-color: #c82333;
}
