/* ========================================
   HOME PAGE STYLES - Hero, Features, Database Support, Benefits, CTA
   ======================================== */

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 64, 175, 0.1);
    color: #005A8A;
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.hero-badge i {
    font-size: 12px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
    letter-spacing: -0.025em;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    gap: 32px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-home-container {
    width: 100%;
    max-width: 600px;
    perspective: 1000px;
}

.dashboard-home-window {
    background: white;
    border-radius: 16px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.dashboard-home-window:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.window-header {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red {
    background: #ef4444;
}

.control.yellow {
    background: #f59e0b;
}

.control.green {
    background: #10b981;
}

.window-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.dashboard-home-content {
    padding: 18px;
    min-height: 600px; /* Aumentado 1.5x (400px * 1.5 = 600px) */
    max-height: 600px; /* Altura fixa - não cresce nem diminui */
    overflow-y: hidden; /* Remove scroll - todo conteúdo deve ser visível */
}

.dashboard-home-nav {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 6px;
}

.nav-tab {
    font-size: 10px;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color 0.2s ease;
}

.nav-tab.active {
    color: #005A8A;
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    height: 2px;
    background: #005A8A;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 90, 138, 0.1);
    color: #005A8A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #005A8A, #0074B6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 64, 175, 0.2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #005A8A, #0074B6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

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

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 90, 138, 0.1);
    color: #005A8A;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Database Support Section */
.database-support {
    padding: 120px 0;
    background: #f8fafc;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.support-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.support-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.support-features {
    list-style: none;
    margin-bottom: 40px;
}

.support-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: #374151;
}

.support-features i {
    color: #10b981;
    font-size: 16px;
    margin-top: 2px;
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #005A8A;
    display: block;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.support-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.db-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.db-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.db-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 90, 138, 0.1);
    border-color: #005A8A;
}

.db-card .db-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #005A8A, #0074B6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 16px;
}

.db-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.db-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.4;
}

.db-version {
    font-size: 12px;
    color: #005A8A;
    font-weight: 600;
    background: rgba(0, 90, 138, 0.1);
    padding: 4px 8px;
    border-radius: 8px;
    display: inline-block;
}

.cloud-platforms {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-weight: 500;
}

.platform-item i {
    font-size: 24px;
    color: #005A8A;
}

/* Benefits Section */
.benefits {
    padding: 120px 0;
    background: white;
}

.benefits-content {
    text-align: center;
}

.benefits-text {
    margin-bottom: 64px;
}

.benefits-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.benefits-text p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.brands-carousel {
    width: 100%;
    overflow: hidden;
    margin: 40px 0 0 0;
    padding: 24px 0;
    background: transparent;
    position: relative;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.brands-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: brands-scroll 40s linear infinite;
    width: max-content;
}

@keyframes brands-scroll {
    0% { 
        transform: translateX(0); 
    }
    100% { 
        transform: translateX(calc(-50% - 24px)); 
    }
}

.brand-logo {
    width: 120px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    flex: 0 0 auto;
}

.brand-logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;

}

.brand-logo:hover img {
    opacity: 1;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #005A8A, #0074B6);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-text {
    margin-bottom: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-buttons .btn-primary {
    min-width: 320px;
    font-size: 2rem;
    padding: 22px 0;
    text-align: center;
    display: inline-block;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 90, 138, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.cta-feature i {
    color: #10b981;
    font-size: 16px;
}

/* Gráficos maiores nos cards do dashboard (Hero Section) */
.metric-card .metric-chart svg {
    width: 100px;
    height: 40px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    overflow: visible;
}

.gauge-container .gauge-svg {
    width: 260px !important;
    height: 140px !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    overflow: visible;
}

@media (max-width: 600px) {
  .metric-card .metric-chart svg {
    width: 80px;
    height: 32px;
  }
  .gauge-container .gauge-svg {
    width: 180px !important;
    height: 90px !important;
  }
}

/* Gráficos menores nos cards do dashboard (Memory Usage, Response Time, Active Connections) */
.metric-card .metric-chart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.metric-card .metric-chart svg {
    width: 120px;
    height: 48px;
    max-width: 100%;
    min-width: 80px;
    min-height: 32px;
    display: block;
    margin: 0 auto;
    overflow: visible;
    background: none;
}

/* Gráfico principal do dashboard (Memory Usage Over Time) - MAIOR E CENTRALIZADO */
.performance-chart .main-chart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    max-width: 100vw;
}
.performance-chart .main-chart svg {
    width: 400px;
    height: 180px;
    max-width: 100%;
    min-width: 220px;
    min-height: 60px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
}
@media (max-width: 1200px) {
  .performance-chart .main-chart svg {
    width: 420px;
    height: 120px;
  }
}
@media (max-width: 900px) {
  .performance-chart .main-chart svg {
    width: 320px;
    height: 80px;
  }
}
@media (max-width: 600px) {
  .performance-chart .main-chart svg {
    width: 180px;
    height: 50px;
  }
}

/* Eixos e grid dos gráficos menores */
.metric-card .metric-chart svg .chart-grid,
.metric-card .metric-chart svg .chart-axis {
    stroke: #e5e7eb;
    stroke-width: 1;
}
.metric-card .metric-chart svg .chart-label {
    font-size: 9px;
    fill: #64748b;
}

/* Eixos e grid do gráfico principal */
.performance-chart .main-chart svg .chart-grid,
.performance-chart .main-chart svg .chart-axis {
    stroke: #e5e7eb;
    stroke-width: 1.2;
}
.performance-chart .main-chart svg .chart-label {
    font-size: 11px;
    fill: #64748b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-text h2 {
        font-size: 32px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn-primary {
        min-width: 280px;
        font-size: 1.5rem;
        padding: 18px 24px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    /* Dashboard responsivo na Hero Section */
    .hero .dashboard-home-content {
        min-height: 350px;
        max-height: 350px;
        overflow-y: auto;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons .btn-primary.large,
    .hero-buttons .btn-secondary.large {
        padding: 16px 24px;
        font-size: 16px;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-buttons .btn-primary {
        min-width: 240px;
        font-size: 1.25rem;
        padding: 16px 20px;
    }

    /* Dashboard responsivo na Hero Section */
    .hero .dashboard-home-content {
        min-height: 300px;
        max-height: 300px;
        overflow-y: auto;
        padding: 8px;
    }
}

@media (max-width: 1024px) {
    .hero-content,
    .support-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features,
    .database-support,
    .benefits,
    .cta-section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .db-cards {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-features {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .brands-track {
        gap: 32px;
    }
    .brand-logo {
        width: 80px;
        height: 48px;
    }
    .brand-logo img {
        max-width: 56px;
        max-height: 32px;
    }
}

@media (max-width: 600px) {
    .brands-track {
        gap: 20px;
        animation: brands-scroll 30s linear infinite;
    }
    .brand-logo {
        width: 56px;
        height: 32px;
    }
    .brand-logo img {
        max-width: 40px;
        max-height: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cloud-platforms {
        flex-wrap: wrap;
        gap: 16px;
    }
}

/* Memory Details Alignment */
.metric-memory-details {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
}
.metric-memory-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 0;
}
.metric-memory-col.right {
    align-items: flex-end;
}
.memory-label {
    font-size: 9px;
    color: #111827;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}
.memory-value {
    font-size: 8px;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 600px) {
  .metric-memory-details {
    flex-direction: column;
    gap: 8px;
  }
  .metric-memory-col,
  .metric-memory-col.right {
    align-items: flex-start;
  }
}

/* Estilos para o novo dashboard baseado na imagem do PDB */

/* Server Insight Status - Layout compacto */
.server-insight {
    grid-column: 1 / -1; /* Ocupa toda a largura */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 12px;
}

.gauge-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-value {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

.gauge-status {
    margin-top: 6px;
    font-size: 10px;
    color: #6b7280;
    text-align: center;
}

.insights-panel {
    padding-left: 12px;
}

.insights-header {
    font-size: 10px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.insight-item {
    margin-bottom: 6px;
}

.insight-title {
    font-size: 9px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 2px;
}

.insight-desc {
    font-size: 8px;
    color: #6b7280;
    line-height: 1.3;
}

.all-insights-link {
    color: #005A8A;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
}

/* Cards de métricas - Layout compacto */
.load-avg-card, .connections-card, .service-card {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.metric-expand {
    color: #9ca3af;
    font-size: 10px;
    cursor: pointer;
}

.metric-sections {
    margin-top: 6px;
}

.metric-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 9px;
    color: #6b7280;
    margin-bottom: 1px;
}

.service-status-main {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 4px 0;
}

/* Memory Section - Layout ajustado */
.memory-section, .buffer-section {
    grid-column: 1 / -1;
    margin-top: 8px;
}
.memory-full-card, .buffer-full-card {
    padding: 24px 24px 20px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    border: 1px solid #e5e7eb;
    margin-bottom: 16px;
}
.memory-header, .buffer-header {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.memory-usage, .buffer-usage {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 16px;
}
.memory-bar-container, .buffer-bar-container {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 6px;
    position: relative;
    margin-bottom: 12px;
}
.memory-progress-bar, .buffer-progress-bar {
    height: 100%;
    background: #1a237e;
    border-radius: 6px;
    transition: width 0.3s;
}
.memory-details-row, .buffer-details-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 8px;
}
.memory-detail-item, .buffer-detail-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.memory-detail-label, .buffer-detail-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 2px;
}
.memory-detail-value, .buffer-detail-value {
    font-size: 13px;
    color: #111827;
    font-weight: 500;
}

/* Valor principal destacado nos cards Memory e Buffer Pool */
.memory-main-value, .buffer-main-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    margin-bottom: 2px;
}
.memory-main-label, .buffer-main-label {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
    margin-bottom: 16px;
    margin-left: 2px;
}

@media (max-width: 600px) {
    .memory-full-card, .buffer-full-card {
        padding: 14px 8px 12px 8px;
    }
    .memory-details-row, .buffer-details-row {
        flex-direction: column;
        gap: 8px;
    }
    .memory-main-value, .buffer-main-value {
        font-size: 1.3rem;
    }
    .memory-main-label, .buffer-main-label {
        font-size: 0.85rem;
    }
}
