@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.85);
    --border-color: rgba(34, 197, 94, 0.2);
    --border-focus: #22C55E;
    --text-primary: #0F172A;
    --text-muted: #64748B;
    
    /* Kolory z logo YieldDev */
    --brand-lime: #22C55E;
    --brand-sprout: #15803D;
    --brand-forest: #166534;
    
    --font-sans: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
}

.auth-page-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(21, 128, 61, 0.05) 0%, transparent 50%);
}

/* Szablon strony i kontener główny */
.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 24px;
    z-index: 10;
}

/* Glassmorphic Card (Jasny motyw) */
.auth-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 44px 36px;
    box-shadow: 0 10px 40px -10px rgba(15, 23, 42, 0.08), 0 0 1px 0 rgba(34, 197, 94, 0.1);
    transition: var(--transition-smooth);
}

.auth-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 16px 48px -8px rgba(34, 197, 94, 0.12);
}

/* Nagłówki i Prestiżowe Logo pionowe */
.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.auth-logo-img {
    height: 68px;
    width: auto;
    filter: drop-shadow(0 4px 12px rgba(34, 197, 94, 0.12));
    transition: var(--transition-smooth);
}

.auth-logo-img:hover {
    transform: scale(1.05);
}

.auth-logo-text {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    display: flex;
}

.text-yield {
    color: #0E3F30;
}

.text-account {
    color: #84CC16;
}

.auth-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Formularze i Pola wejściowe (Floating Labels w stylu Google Material) */
.form-group-floating {
    position: relative;
    margin-bottom: 22px;
}

.form-control-floating {
    width: 100%;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px 16px 6px 16px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    outline: none;
}

/* Zapobieganie zmianie fontu i koloru przez autouzupełnianie przeglądarki */
.form-control-floating:-webkit-autofill,
.form-control-floating:-webkit-autofill:hover, 
.form-control-floating:-webkit-autofill:focus, 
.form-control-floating:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    -webkit-text-fill-color: var(--text-primary) !important;
}

.form-control-floating:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.15);
}

.form-label-floating {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    transition: var(--transition-smooth);
    background: transparent;
}

/* Stan, gdy pole jest aktywne lub posiada wpisany tekst (oraz przy autouzupełnianiu przeglądarki) */
.form-control-floating:focus ~ .form-label-floating,
.form-control-floating:not(:placeholder-shown) ~ .form-label-floating,
.form-control-floating:-webkit-autofill ~ .form-label-floating,
.form-control-floating:autofill ~ .form-label-floating {
    top: 6px;
    transform: translateY(0);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--brand-sprout);
}

/* Integracja z walidacją ASP.NET Core (czerwone obramowanie i etykieta) */
.form-control-floating.input-validation-error {
    border-color: #EF4444;
}

.form-control-floating.input-validation-error:focus {
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

.form-control-floating.input-validation-error ~ .form-label-floating {
    color: #EF4444;
}

/* Błędy walidacji */
.text-danger {
    color: #EF4444;
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    display: block;
}

.validation-summary-errors {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 24px;
    list-style-type: none;
    font-size: 13px;
    color: #EF4444;
    font-weight: 500;
}

/* Przyciski (CTA) z markowym gradientem */
.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--brand-sprout) 0%, var(--brand-lime) 100%);
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
    filter: brightness(1.05);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Linki pomocnicze */
.auth-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.auth-link {
    color: var(--brand-sprout);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.auth-link:hover {
    color: var(--brand-lime);
    text-decoration: underline;
}

/* Sekcja eko-systemowa na dole */
.ecosystem-footer {
    margin-top: 36px;
    border-top: 1.5px solid #F1F5F9;
    padding-top: 24px;
    text-align: center;
}

.ecosystem-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 400;
}

.ecosystem-text strong {
    color: var(--brand-sprout);
    font-weight: 700;
}

/* ==========================================================================
   PREMIUM DASHBOARD STYLES (Google Account Style)
   ========================================================================== */

.dashboard-page-body {
    background-color: #F8FAFC;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 1. Header */
.dash-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    padding: 12px 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
}

.dash-header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dash-header-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dash-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.dash-logo-img {
    height: 38px;
    width: auto;
}

.dash-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* 2. Avatar & Dropdown */
.avatar-container {
    position: relative;
}

.avatar-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--brand-sprout) 0%, var(--brand-lime) 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    user-select: none;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

.avatar-badge:hover, .avatar-badge.active {
    border-color: var(--brand-lime);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transform: scale(1.03);
}

.profile-dropdown {
    position: absolute;
    top: 50px;
    right: 0;
    width: 320px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05), 0 0 1px 0 rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: none;
    z-index: 110;
    animation: dropdownFade 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-dropdown.show {
    display: block;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 20px;
    margin-bottom: 16px;
}

.dropdown-avatar-large {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--brand-sprout) 0%, var(--brand-lime) 100%);
    color: white;
    font-size: 26px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.25);
}

.dropdown-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.dropdown-email {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.dropdown-role-badge {
    font-size: 11px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.1);
    color: var(--brand-sprout);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.dropdown-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-btn-manage {
    width: 100%;
    background: #F1F5F9;
    color: #334155;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.dropdown-btn-manage:hover {
    background: #E2E8F0;
    color: #0F172A;
}

.dropdown-btn-logout {
    width: 100%;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    color: #EF4444;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.dropdown-btn-logout:hover {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

/* 3. Main Layout Structure */
.dash-wrapper {
    display: flex;
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 32px 40px;
    gap: 32px;
    box-sizing: border-box;
}

/* Sidebar Navigation */
.dash-sidebar {
    width: 260px;
    flex-shrink: 0;
    border-right: 1px solid #E2E8F0;
    padding-right: 24px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: var(--transition-smooth);
}

.dash-nav-item svg {
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.dash-nav-item:hover {
    background: #F1F5F9;
    color: #0F172A;
}

.dash-nav-item.active {
    background: rgba(34, 197, 94, 0.08);
    color: var(--brand-sprout);
    font-weight: 700;
    border-left: 4px solid var(--brand-lime);
    border-radius: 0 14px 14px 0;
    margin-left: -24px;
    padding-left: 20px;
}

.dash-nav-item.active svg {
    color: var(--brand-lime);
}

/* 4. Tab Panels & Animations */
.dash-main {
    flex: 1;
    min-width: 0; /* Prevents flex items from breaking layout on smaller screens */
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Area */
.dash-welcome {
    margin-bottom: 32px;
}

.dash-welcome-title {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.dash-welcome-sub {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
}

/* 5. Google Style Cards Grid */
.google-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.google-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.google-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.08), 0 0 1px 0 rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.25);
}

.google-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.google-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1E293B;
}

.google-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F8FAFC;
    color: var(--brand-sprout);
    border: 1px solid #F1F5F9;
}

.google-card-desc {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
}

.google-card-body {
    flex: 1;
    margin-bottom: 24px;
}

.google-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
}

.google-card-list-item {
    display: flex;
    justify-content: space-between;
}

.google-card-list-label {
    color: #64748B;
}

.google-card-list-val {
    font-weight: 600;
    color: #1E293B;
}

.google-card-action {
    border-top: 1px solid #F1F5F9;
    padding-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.google-card-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-sprout);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.google-card-link:hover {
    color: var(--brand-lime);
}

/* Security Status Banner */
.security-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 24px;
    margin-bottom: 28px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.security-banner-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-banner-icon.safe {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.security-banner-icon.warning {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.security-banner-content {
    flex: 1;
}

.security-banner-title {
    font-size: 15px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2px;
}

.security-banner-sub {
    font-size: 13px;
    color: #64748B;
}

/* 6. Form Details Page Styles */
.detail-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    margin-bottom: 24px;
}

.detail-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.detail-card-desc {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 28px;
    line-height: 1.5;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 640px) {
    .form-grid-two {
        grid-template-columns: 1fr;
    }
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 12px;
}

.btn-secondary {
    background: #F1F5F9;
    color: #475569;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: #E2E8F0;
    color: #0F172A;
}

/* App Launcher Section */
.app-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-launcher-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.app-launcher-card:hover {
    background: #FFFFFF;
    border-color: var(--brand-lime);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.08);
}

.app-launcher-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1.5px solid #E2E8F0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-sprout);
    font-weight: 800;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.app-launcher-card:hover .app-launcher-icon {
    border-color: var(--brand-lime);
    background: rgba(34, 197, 94, 0.03);
}

.app-launcher-details {
    flex: 1;
}

.app-launcher-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 2px;
}

.app-launcher-desc {
    font-size: 12px;
    color: #64748B;
    line-height: 1.4;
}

.app-launcher-status {
    font-size: 10px;
    font-weight: 700;
    background: rgba(34, 197, 94, 0.15);
    color: #15803D;
    padding: 2px 8px;
    border-radius: 6px;
    margin-left: auto;
}

/* 7. Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.toast-notification {
    background: #1E293B;
    color: #F8FAFC;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    animation: toastSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast-close {
    background: transparent;
    border: none;
    color: #94A3B8;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition-smooth);
}

.toast-close:hover {
    color: #FFFFFF;
}

/* Responsive Overrides */
@media (max-width: 900px) {
    .dash-wrapper {
        flex-direction: column;
        padding: 20px 16px;
    }
    
    .dash-sidebar {
        width: 100%;
    }
    
    .dash-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .dash-nav-item {
        width: auto;
        padding: 10px 16px;
    }
}

/* Modules Launcher Redesign */
.modules-section {
    margin-top: 12px;
    margin-bottom: 32px;
}

.modules-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.apps-launch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 24px;
}

.app-launch-hero-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.005);
    position: relative;
    overflow: hidden;
}

.app-launch-hero-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-forest), var(--brand-sprout));
    opacity: 0;
    transition: var(--transition-smooth);
}

.app-launch-hero-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(34, 197, 94, 0.02);
    border-color: rgba(34, 197, 94, 0.3);
}

.app-launch-hero-card:hover::after {
    opacity: 1;
}

.app-launch-card-badge {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(34, 197, 94, 0.06);
    border: 1.5px solid rgba(34, 197, 94, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-sprout);
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.app-launch-hero-card:hover .app-launch-card-badge {
    background: var(--brand-sprout);
    color: #FFFFFF;
    border-color: var(--brand-sprout);
    transform: scale(1.05);
}

.app-launch-card-content {
    flex: 1;
    margin-bottom: 24px;
}

.app-launch-card-name {
    font-size: 22px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.app-launch-card-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
}

.app-launch-card-action {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--brand-forest);
    transition: var(--transition-smooth);
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
    margin-top: auto;
}

.app-launch-card-action svg {
    transition: transform 0.2s ease;
}

.app-launch-hero-card:hover .app-launch-card-action {
    color: var(--brand-lime);
}

.app-launch-hero-card:hover .app-launch-card-action svg {
    transform: translateX(4px);
}

.no-apps-info {
    grid-column: 1 / -1;
    background: #F8FAFC;
    border: 1px dashed #CBD5E1;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #64748B;
    font-size: 15px;
}

/* Account Summary Row */
.account-summary-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid #E2E8F0;
    padding-top: 24px;
    margin-top: 16px;
}

.summary-item {
    flex: 1;
    min-width: 280px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13.5px;
    color: #475569;
}

.summary-item svg {
    color: #64748B;
    flex-shrink: 0;
}

.summary-link {
    margin-left: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-forest);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.summary-link:hover {
    color: var(--brand-lime);
    text-decoration: underline;
}
