// Modern Dashboard Styles
.modern-dashboard {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0;

    // Dashboard Header
    .dashboard-header {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        border-bottom: 1px solid #e2e8f0;
        padding: 2rem 2rem 1.5rem;
        margin-bottom: 2rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;

            .header-title {
                display: flex;
                align-items: center;
                gap: 1rem;

                .title-icon {
                    font-size: 2.5rem;
                    color: #3b82f6;
                    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
                    padding: 0.75rem;
                    border-radius: 16px;
                    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
                }

                .title-text {
                    h1 {
                        font-size: 2rem;
                        font-weight: 700;
                        color: #1e293b;
                        margin: 0 0 0.25rem 0;
                        line-height: 1.2;
                    }

                    p {
                        color: #64748b;
                        margin: 0;
                        font-size: 0.95rem;
                        font-weight: 500;
                    }
                }
            }

            .header-stats {
                display: flex;
                gap: 1.5rem;

                .stat-card {
                    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
                    border: 1px solid #e2e8f0;
                    border-radius: 12px;
                    padding: 1rem 1.5rem;
                    text-align: center;
                    min-width: 80px;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

                    .stat-number {
                        font-size: 1.75rem;
                        font-weight: 700;
                        color: #3b82f6;
                        line-height: 1;
                        margin-bottom: 0.25rem;
                    }

                    .stat-label {
                        font-size: 0.75rem;
                        color: #64748b;
                        font-weight: 600;
                        text-transform: uppercase;
                        letter-spacing: 0.5px;
                    }
                }
            }
        }
    }

    // Dashboard Controls
    .dashboard-controls {
        max-width: 1400px;
        margin: 0 auto 2rem;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;

        .search-section {
            flex: 1;
            max-width: 400px;

            .search-input-wrapper {
                position: relative;
                display: flex;
                align-items: center;

                .search-icon {
                    position: absolute;
                    left: 13px;
                    color: #94a3b8;
                    font-size: 1.25rem;
                    z-index: 2;
                    top: 15px;
                }

                .search-input {
                    width: 100%;
                    padding: 1rem 1rem 1rem 3rem;
                    border: 2px solid #e2e8f0;
                    border-radius: 12px;
                    font-size: 0.95rem;
                    background: white;
                    transition: all 0.3s ease;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);

                    &:focus {
                        outline: none;
                        border-color: #3b82f6;
                        box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
                        transform: translateY(-1px);
                    }

                    &::placeholder {
                        color: #94a3b8;
                    }
                }

                .clear-search {
                    position: absolute;
                    right: 1rem;
                    background: #f1f5f9;
                    border: none;
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                    color: #64748b;
                    font-size: 1.25rem;
                    line-height: 1;
                    transition: all 0.2s ease;

                    &:hover {
                        background: #e2e8f0;
                        color: #475569;
                    }
                }
            }

            .search-results-info {
                margin-top: 0.5rem;
                font-size: 0.875rem;
                color: #64748b;
                font-weight: 500;
            }
        }

        .action-controls {
            display: flex;
            gap: 0.75rem;
            flex-shrink: 0;

            .action-btn {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                padding: 0.875rem 1.25rem;
                border-radius: 10px;
                font-weight: 600;
                font-size: 0.875rem;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
                text-decoration: none;
                position: relative;
                overflow: hidden;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                    transition: left 0.5s ease;
                }

                &:hover::before {
                    left: 100%;
                }

                svg {
                    font-size: 1.125rem;
                }

                .lock-icon {
                    font-size: 0.875rem;
                    margin-left: 0.25rem;
                }

                &.export-btn {
                    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
                    color: white;
                    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);

                    &:hover:not(:disabled) {
                        background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
                        transform: translateY(-2px);
                        box-shadow: 0 6px 20px rgba(139, 92, 246, 0.35);
                    }

                    &:disabled {
                        opacity: 0.5;
                        cursor: not-allowed;
                        transform: none;
                        background: #9ca3af;
                        box-shadow: none;
                    }
                }

                &.import-btn {
                    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                    color: white;
                    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);

                    &:hover {
                        background: linear-gradient(135deg, #059669 0%, #047857 100%);
                        transform: translateY(-2px);
                        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
                    }
                }

                &.create-btn {
                    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                    color: white;
                    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);

                    &:hover {
                        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                        transform: translateY(-2px);
                        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
                        color: white;
                        text-decoration: none;
                    }
                }

                &.premium-locked {
                    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
                    cursor: not-allowed;

                    &:hover {
                        background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
                        transform: translateY(-1px);
                        box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
                    }
                }
            }
        }
    }

    // Dashboard Content
    .dashboard-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem 2rem;

        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;

            .loading-spinner {
                width: 48px;
                height: 48px;
                border: 4px solid #f1f5f9;
                border-top: 4px solid #3b82f6;
                border-radius: 50%;
                animation: spin 1s linear infinite;
                margin-bottom: 1rem;
            }

            .loading-text {
                color: #64748b;
                font-size: 1rem;
                font-weight: 500;
            }
        }

        .no-results-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 4rem 2rem;
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            text-align: center;

            .no-results-icon {
                font-size: 4rem;
                margin-bottom: 1.5rem;
                opacity: 0.7;
            }

            h3 {
                font-size: 1.5rem;
                font-weight: 700;
                color: #1e293b;
                margin-bottom: 0.75rem;
            }

            p {
                color: #64748b;
                font-size: 1rem;
                margin-bottom: 2rem;
                line-height: 1.6;
            }

            .clear-search-btn {
                background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                color: white;
                border: none;
                padding: 0.875rem 1.5rem;
                border-radius: 10px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);

                &:hover {
                    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                    transform: translateY(-2px);
                    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.35);
                }
            }
        }

        .forms-list-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            overflow: hidden;

            .list-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 1.5rem 2rem 1rem;
                border-bottom: 1px solid #f1f5f9;
                background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);

                .results-info {
                    font-size: 0.875rem;
                    color: #64748b;
                    font-weight: 500;
                }

                .pagination-info {
                    font-size: 0.875rem;
                    color: #64748b;
                    font-weight: 500;
                }
            }
        }

        .pagination-container {
            padding: 1.5rem 2rem;
            border-top: 1px solid #f1f5f9;
            background: linear-gradient(135deg, #fafbfc 0%, #f8fafc 100%);

            .pagination {
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 0.5rem;

                .pagination-btn {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    padding: 0.75rem 1rem;
                    border: 1px solid #e2e8f0;
                    background: white;
                    color: #475569;
                    border-radius: 8px;
                    font-size: 0.875rem;
                    font-weight: 500;
                    cursor: pointer;
                    transition: all 0.2s ease;

                    &:hover:not(.disabled) {
                        background: #f8fafc;
                        border-color: #cbd5e1;
                        transform: translateY(-1px);
                    }

                    &.disabled {
                        opacity: 0.5;
                        cursor: not-allowed;
                        background: #f8fafc;
                    }
                }

                .pagination-numbers {
                    display: flex;
                    align-items: center;
                    gap: 0.25rem;
                    margin: 0 1rem;

                    .pagination-number {
                        width: 40px;
                        height: 40px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        border: 1px solid #e2e8f0;
                        background: white;
                        color: #475569;
                        border-radius: 8px;
                        font-size: 0.875rem;
                        font-weight: 500;
                        cursor: pointer;
                        transition: all 0.2s ease;

                        &:hover {
                            background: #f8fafc;
                            border-color: #cbd5e1;
                            transform: translateY(-1px);
                        }

                        &.active {
                            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                            color: white;
                            border-color: #3b82f6;
                            box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);

                            &:hover {
                                background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                                transform: translateY(-1px);
                                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
                            }
                        }
                    }

                    .pagination-ellipsis {
                        padding: 0 0.5rem;
                        color: #94a3b8;
                        font-weight: 500;
                    }
                }
            }
        }
    }

    // Modern Empty State
    .modern-empty-state {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;

        .empty-state-content {
            background: white;
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;

            &::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
            }

            .empty-state-illustration {
                margin-bottom: 2rem;

                .illustration-bg {
                    width: 120px;
                    height: 120px;
                    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin: 0 auto;
                    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);

                    .form-icon {
                        font-size: 3rem;
                        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
                    }
                }
            }

            .empty-state-text {
                margin-bottom: 2.5rem;

                h2 {
                    font-size: 2rem;
                    font-weight: 700;
                    color: #1e293b;
                    margin-bottom: 1rem;
                    line-height: 1.3;
                }

                p {
                    color: #64748b;
                    font-size: 1.1rem;
                    line-height: 1.6;
                    max-width: 500px;
                    margin: 0 auto;
                }
            }

            .empty-state-actions {
                display: flex;
                gap: 1rem;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                margin-bottom: 2rem;

                .primary-action-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
                    color: white;
                    padding: 1rem 2rem;
                    border-radius: 12px;
                    font-weight: 600;
                    font-size: 1rem;
                    transition: all 0.3s ease;
                    text-decoration: none;
                    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
                    position: relative;
                    overflow: hidden;

                    &::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                        transition: left 0.5s ease;
                    }

                    &:hover {
                        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
                        transform: translateY(-3px);
                        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
                        color: white;
                        text-decoration: none;

                        &::before {
                            left: 100%;
                        }
                    }

                    svg {
                        font-size: 1.25rem;
                    }
                }

                .secondary-action-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 0.5rem;
                    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
                    color: white;
                    padding: 1rem 2rem;
                    border-radius: 12px;
                    font-weight: 600;
                    font-size: 1rem;
                    transition: all 0.3s ease;
                    border: none;
                    cursor: pointer;
                    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
                    position: relative;
                    overflow: hidden;

                    &::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                        transition: left 0.5s ease;
                    }

                    &:hover {
                        background: linear-gradient(135deg, #059669 0%, #047857 100%);
                        transform: translateY(-3px);
                        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);

                        &::before {
                            left: 100%;
                        }
                    }

                    &.premium-locked {
                        background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
                        cursor: not-allowed;

                        &:hover {
                            background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
                            transform: translateY(-1px);
                            box-shadow: 0 4px 12px rgba(107, 114, 128, 0.25);
                        }
                    }

                    svg {
                        font-size: 1.25rem;
                    }

                    .lock-icon {
                        font-size: 1rem;
                        margin-left: 0.25rem;
                    }
                }
            }

            .empty-state-help {
                p {
                    color: #64748b;
                    font-size: 0.95rem;
                    line-height: 1.6;

                    .help-link {
                        color: #3b82f6;
                        text-decoration: none;
                        font-weight: 600;
                        margin-left: 0.5rem;
                        transition: color 0.2s ease;

                        &:hover {
                            color: #2563eb;
                            text-decoration: underline;
                        }
                    }
                }
            }
        }
    }
}

// Animations
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

// Responsive Design
@media (max-width: 1200px) {
    .modern-dashboard {
        .dashboard-header .header-content {
            max-width: 100%;
        }

        .dashboard-controls,
        .dashboard-content,
        .modern-empty-state {
            max-width: 100%;
        }
    }
}

@media (max-width: 768px) {
    .modern-dashboard {
        .dashboard-header {
            padding: 1.5rem 1rem 1rem;

            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;

                .header-title {
                    .title-icon {
                        font-size: 2rem;
                        padding: 0.5rem;
                    }

                    .title-text h1 {
                        font-size: 1.5rem;
                    }
                }

                .header-stats {
                    align-self: stretch;
                    justify-content: space-around;

                    .stat-card {
                        flex: 1;
                        max-width: 120px;
                    }
                }
            }
        }

        .dashboard-controls {
            flex-direction: column;
            padding: 0 1rem;
            gap: 1.5rem;

            .search-section {
                max-width: 100%;
            }

            .action-controls {
                width: 100%;
                justify-content: space-between;
                flex-wrap: wrap;

                .action-btn {
                    flex: 1;
                    min-width: 0;
                    justify-content: center;

                    span {
                        display: none;
                    }

                    svg {
                        margin: 0;
                    }
                }
            }
        }

        .dashboard-content {
            padding: 0 1rem 2rem;

            .forms-list-container {
                .list-header {
                    padding: 1rem;
                    flex-direction: column;
                    gap: 0.5rem;
                    text-align: center;
                }

                .pagination-container {
                    padding: 1rem;

                    .pagination {
                        flex-direction: column;
                        gap: 1rem;

                        .pagination-numbers {
                            margin: 0;
                            justify-content: center;
                            flex-wrap: wrap;

                            .pagination-number {
                                width: 36px;
                                height: 36px;
                                font-size: 0.8rem;
                            }
                        }

                        .pagination-btn {
                            width: 100%;
                            justify-content: center;
                        }
                    }
                }
            }
        }

        .modern-empty-state {
            padding: 0 1rem;

            .empty-state-content {
                padding: 3rem 1.5rem;

                .empty-state-text h2 {
                    font-size: 1.5rem;
                }

                .empty-state-actions {
                    flex-direction: column;
                    width: 100%;

                    .primary-action-btn,
                    .secondary-action-btn {
                        width: 100%;
                        justify-content: center;
                    }
                }
            }
        }
    }
}

@media (max-width: 480px) {
    .modern-dashboard {
        .dashboard-controls .action-controls {
            .action-btn {
                padding: 0.75rem;
                
                svg {
                    font-size: 1rem;
                }
            }
        }
    }
}


// Dashboard Modal Styles
.modern-delete-modal {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    max-width: 450px;
    width: 90vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    }

    .modal-header {
        padding: 1.25rem 1.25rem 0;
        display: flex;
        justify-content: flex-end;

        .close-btn {
            background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: #64748b;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

            &:hover {
                background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
                color: #475569;
                transform: scale(1.1) rotate(90deg);
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            }

            svg {
                font-size: 1.375rem;
            }
        }
    }

    .modal-body {
        padding: 0 2.5rem 2.5rem;
        text-align: center;

        .modal-icon {
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;

            .delete-icon {
                width: auto;
                height: 140px;
                filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
                animation: iconBounce 2s ease-in-out infinite;
            }
        }

        h2 {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        p {
            color: #64748b;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2.5rem;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;

            .cancel-btn {
                background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
                color: #475569;
                border: 2px solid #e2e8f0;
                padding: 1rem 2rem;
                border-radius: 12px;
                font-weight: 600;
                font-size: 0.95rem;
                cursor: pointer;
                transition: all 0.3s ease;
                min-width: 120px;
                position: relative;
                overflow: hidden;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(100, 116, 139, 0.1), transparent);
                    transition: left 0.5s ease;
                }

                &:hover {
                    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
                    border-color: #cbd5e1;
                    transform: translateY(-2px);
                    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

                    &::before {
                        left: 100%;
                    }
                }

                &:active {
                    transform: translateY(0);
                }
            }

            .delete-btn {
                background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
                color: white;
                border: none;
                padding: 1rem 2rem;
                border-radius: 12px;
                font-weight: 600;
                font-size: 0.95rem;
                cursor: pointer;
                transition: all 0.3s ease;
                box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
                min-width: 140px;
                position: relative;
                overflow: hidden;

                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -100%;
                    width: 100%;
                    height: 100%;
                    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
                    transition: left 0.5s ease;
                }

                &:hover {
                    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
                    transform: translateY(-3px);
                    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4);

                    &::before {
                        left: 100%;
                    }
                }

                &:active {
                    transform: translateY(-1px);
                }
            }
        }
    }
}

// Modal Animations
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes iconBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

// Modal Backdrop
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9998;
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

// Mobile Modal Responsive Styles
@media (max-width: 480px) {
    .modern-delete-modal {
        max-width: 95vw;
        margin: 1rem;

        .modal-header {
            padding: 1rem;

            .close-btn {
                width: 32px;
                height: 32px;

                svg {
                    font-size: 1.25rem;
                }
            }
        }

        .modal-body {
            padding: 0 1.5rem 2rem;

            .modal-icon {
                margin-bottom: 1.5rem;

                .delete-icon {
                    height: 100px;
                }
            }

            h2 {
                font-size: 1.5rem;
                margin-bottom: 0.75rem;
            }

            p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .modal-actions {
                flex-direction: column;
                gap: 0.75rem;

                .cancel-btn,
                .delete-btn {
                    width: 100%;
                    padding: 0.875rem 1.5rem;
                    font-size: 0.9rem;
                }
            }
        }
    }
}


// Premium locked button styles
.action-btn.premium-locked,
.primary-action-btn.premium-locked,
.secondary-action-btn.premium-locked {
    position: relative;
    opacity: 0.7;
    
    .lock-icon {
        margin-left: 8px;
        font-size: 16px;
        animation: shake 2s infinite;
    }
    
    &:hover {
        opacity: 0.85;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-2px);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(2px);
    }
}
