.hidden { display: none !important; }

.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    color: white;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-content label {
    display: block;
    margin-top: 1em;
}

.modal-content input {
    width: 100%;
    padding: 8px;
    margin-top: 0.5em;
    background-color: #2e2e2e;
    color: white;
    border: 1px solid #555;
    border-radius: 4px;
}

.modal-content button {
    margin-top: 1.5em;
    padding: 10px 20px;
    background-color: #007bff;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}
