/* Styles for password-protected directories */
.menu-li.password-protected {
    position: relative;
}

.menu-li.password-protected::after {
    content: '🔒';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0.7;
}

.menu-li.password-protected:hover::after {
    opacity: 1;
}

/* Style for the password prompt */
.password-prompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 300px;
}

.password-prompt input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.password-prompt button {
    background: #4CAF50;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
}

.password-prompt button.cancel {
    background: #f44336;
}

.password-prompt .error {
    color: #f44336;
    margin-top: 10px;
    font-size: 14px;
} 