/* Storage Permission Popup Styles */
.storage-permission-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.storage-permission-modal {
    background: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.storage-permission-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.storage-permission-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}

.storage-permission-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
}

.storage-permission-features {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
}

.storage-permission-features ul {
    margin: 0;
    padding-left: 20px;
}

.storage-permission-features li {
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.storage-permission-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.storage-permission-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.storage-permission-btn-allow {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.storage-permission-btn-allow:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.storage-permission-btn-deny {
    background: #f3f4f6;
    color: #6b7280;
}

.storage-permission-btn-deny:hover {
    background: #e5e7eb;
}

.storage-permission-learn-more {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 16px;
}

.storage-permission-learn-more a {
    color: #667eea;
    text-decoration: none;
}

.storage-permission-learn-more a:hover {
    text-decoration: underline;
}
