.password-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.password-dialog-content {
    background-color: #1e1e1e;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.password-dialog h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.password-dialog p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.password-dialog input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    background-color: #2d2d2d;
    border: 1px solid #3d3d3d;
    border-radius: 4px;
    color: #ffffff;
}

.password-dialog input:focus {
    outline: none;
    border-color: #eb4947;
}

.password-dialog button {
    background-color: #eb4947;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

.password-dialog button:hover {
    background-color: #d13e3c;
} 