    /* Mobile-First Applications Page Styling */
    
    /* Page Header Styling */
    .applications-header {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .applications-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .applications-title i {
        color: var(--primary);
        font-size: 1.3rem;
    }

    .header-actions {
        display: flex;
        gap: 0.75rem;
        align-items: center;
    }

    .btn-back {
        background: #f3f4f6;
        border: 1px solid #d1d5db;
        color: #374151;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
    }

    .btn-back:hover {
        background: #e5e7eb;
        color: #1f2937;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .btn-add-app {
        background: var(--primary);
        border: none;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 0.875rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .btn-add-app:hover {
        background: var(--secondary);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .btn-back-app {
        background: var(--info);
        border: none;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 0.875rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .btn-back-app:hover {
        background: var(--info);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    /* Empty State Styling */
    .empty-state {
        text-align: center;
        padding: 3rem 1rem;
        background: white;
        border-radius: 16px;
        border: 1px solid #e5e7eb;
        margin-top: 2rem;
    }

    .empty-state-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: #9ca3af;
        font-size: 2rem;
    }

    .empty-state-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: #374151;
        margin-bottom: 0.75rem;
    }

    .empty-state-description {
        color: #6b7280;
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn-create-app {
        background: var(--primary);
        border: none;
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.2s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .btn-create-app:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        color: white;
        text-decoration: none;
    }

    /* Applications Grid */
    .applications-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /* Application Card */
    .app-card {
        background: white;
        border: 1px solid #e5e7eb;
        border-radius: 16px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .app-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border-color: var(--primary);
    }

    /* Progress Bar */
    .progress-strip {
        height: 4px;
        background: linear-gradient(to right, var(--primary) 0%, #e5e7eb 0%);
        transition: all 0.3s ease;
    }

    /* Card Header */
    .app-card-header {
        padding: 1rem 1.5rem 0.75rem;
        border-bottom: 1px solid #f3f4f6;
    }

    .app-domain {
        font-size: 1.1rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .app-domain i {
        color: var(--primary);
        font-size: 1rem;
    }

    .app-subscription {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .subscription-active {
        background: #d1fae5;
        color: #065f46;
    }

    .subscription-inactive {
        background: #fef3c7;
        color: #92400e;
    }

    /* Card Body */
    .app-card-body {
        padding: 1rem 1.5rem;
    }

    .progress-section {
        margin-bottom: 1rem;
    }

    .progress-label {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .progress-text {
        font-size: 0.875rem;
        font-weight: 500;
        color: #6b7280;
    }

    .progress-badge {
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: white;
    }

    .progress-bar-container {
        height: 8px;
        background: #f3f4f6;
        border-radius: 4px;
        overflow: hidden;
    }

    .progress-bar-fill {
        height: 100%;
        background: var(--primary);
        border-radius: 4px;
        transition: width 0.3s ease;
    }

    /* Status Grid */
    .status-grid {
        display: grid;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .status-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0.75rem;
        background: #f9fafb;
        border-radius: 8px;
        border: 1px solid #f3f4f6;
    }

    .status-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
        font-weight: 500;
        color: #6b7280;
    }

    .status-label i {
        font-size: 0.9rem;
    }

    .status-badge {
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
        font-size: 0.75rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }

    .status-active {
        background: #d1fae5;
        color: #065f46;
    }

    .status-pending {
        background: #fef3c7;
        color: #92400e;
    }

    /* Card Footer */
    .app-card-footer {
        padding: 0.75rem 1.5rem 1rem;
        border-top: 1px solid #f3f4f6;
    }

    .btn-manage {
        width: 100%;
        background: var(--primary);
        border: none;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
        text-decoration: none;
        margin-bottom: 0.5rem;
    }

    .btn-manage:hover {
        background: var(--secondary);
        transform: translateY(-1px);
        color: white;
        text-decoration: none;
    }

    .btn-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.375rem;
    }

    .btn-edit, .btn-delete {
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.375rem;
        transition: all 0.2s ease;
        text-decoration: none;
        border: 1px solid;
    }

    .btn-edit {
        background: white;
        border-color: var(--primary);
        color: var(--primary);
    }

    .btn-edit:hover {
        background: var(--primary);
        color: white;
        text-decoration: none;
    }

    .btn-delete {
        background: white;
        border-color: #ef4444;
        color: #ef4444;
    }

    .btn-delete:hover {
        background: #ef4444;
        color: white;
        text-decoration: none;
    }

    /* Loading State */
    .loading-state {
        text-align: center;
        padding: 3rem 1rem;
    }

    .loading-spinner {
        width: 3rem;
        height: 3rem;
        border: 3px solid #f3f4f6;
        border-top: 3px solid var(--primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 1rem;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .loading-text {
        color: #6b7280;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* Error State */
    .error-state {
        background: #fef2f2;
        border: 1px solid #fecaca;
        border-radius: 12px;
        padding: 2rem;
        text-align: center;
        margin-top: 2rem;
    }

    .error-icon {
        color: #ef4444;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .error-title {
        color: #dc2626;
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .error-description {
        color: #7f1d1d;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .btn-retry {
        background: #ef4444;
        border: none;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.875rem;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.2s ease;
    }

    .btn-retry:hover {
        background: #dc2626;
        transform: translateY(-1px);
    }

    /* Desktop Responsive */
    @media (min-width: 768px) {
        .applications-header {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }

        .applications-title {
            font-size: 1.75rem;
        }

        .applications-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .empty-state {
            padding: 4rem 2rem;
        }

        .empty-state-icon {
            width: 100px;
            height: 100px;
            font-size: 2.5rem;
        }

        .empty-state-title {
            font-size: 1.5rem;
        }
    }

    @media (min-width: 1024px) {
        .applications-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }
    }
