/* Apple-Style Design for EC2 Spot Analyzer */

:root {
    /* Apple Color Palette */
    --apple-blue: #007aff;
    --apple-blue-dark: #0051d5;
    --apple-green: #34c759;
    --apple-orange: #ff9500;
    --apple-red: #ff3b30;
    --apple-purple: #af52de;
    --apple-pink: #ff2d55;
    --apple-yellow: #ffcc00;
    --apple-gray: #8e8e93;
    --apple-gray-light: #f2f2f7;
    --apple-gray-2: #e5e5ea;
    --apple-gray-3: #d1d1d6;
    --apple-gray-4: #c7c7cc;
    --apple-gray-5: #aeaeb2;
    --apple-gray-6: #636366;
    --apple-text: #1d1d1f;
    --apple-text-secondary: #86868b;
    --apple-background: #ffffff;
    --apple-background-secondary: #f5f5f7;

    /* Spacing */
    --apple-spacing-xs: 4px;
    --apple-spacing-sm: 8px;
    --apple-spacing-md: 16px;
    --apple-spacing-lg: 24px;
    --apple-spacing-xl: 32px;
    --apple-spacing-2xl: 48px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--apple-background);
    color: var(--apple-text);
    font-size: 17px;
    line-height: 1.47059;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Apple-style scroll snap for sections */
.container {
    scroll-snap-type: y proximity;
}

.row {
    scroll-snap-align: start;
}

/* Apple-Style Navigation Bar */
.navbar {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--apple-gray-2);
    padding: 0;
    min-height: 44px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 600;
    font-size: 20px;
    color: var(--apple-text) !important;
    padding: 10px 20px;
    letter-spacing: -0.01em;
}

.navbar-brand i {
    margin-right: 8px;
    color: var(--apple-blue);
}

.navbar-nav .nav-link {
    color: var(--apple-text) !important;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 16px !important;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 0 4px;
}

.navbar-nav .nav-link:hover {
    background-color: var(--apple-gray-light);
    color: var(--apple-blue) !important;
}

/* Apple-Style Cards */
.card {
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card-header {
    border-bottom: 1px solid var(--apple-gray-2);
    font-weight: 600;
    font-size: 22px;
    background-color: white;
    padding: 20px 24px;
    letter-spacing: -0.01em;
}

.card-header.bg-primary {
    background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-blue-dark) 100%);
    color: white !important;
    border-bottom: none;
}

.card-header.bg-success {
    background: linear-gradient(135deg, var(--apple-green) 0%, #28a745 100%);
    color: white !important;
    border-bottom: none;
}

.card-header.bg-info {
    background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-purple) 100%);
    color: white !important;
    border-bottom: none;
}

.card-header.bg-warning {
    background: linear-gradient(135deg, var(--apple-yellow) 0%, var(--apple-orange) 100%);
    color: var(--apple-text) !important;
    border-bottom: none;
}

.card-header.bg-secondary {
    background: linear-gradient(135deg, var(--apple-gray) 0%, var(--apple-gray-6) 100%);
    color: white !important;
    border-bottom: none;
}

/* Ensure text in white color classes */
.text-white,
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span {
    color: white !important;
}

/* Apple Form Styling */
.form-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--apple-text);
    letter-spacing: -0.01em;
}

.form-label i {
    margin-right: 6px;
    width: 16px;
    color: var(--apple-text-secondary);
}

.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--apple-gray-3);
    transition: all 0.2s ease;
    padding: 12px 16px;
    font-size: 17px;
    background-color: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
    outline: none;
    background-color: white;
}

.form-text {
    font-size: 13px;
    color: var(--apple-text-secondary);
}

/* Apple Button Styling */
.btn {
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-size: 17px;
    padding: 12px 20px;
    border: none;
    letter-spacing: -0.01em;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 19px;
    border-radius: 14px;
}

.btn-primary {
    background-color: var(--apple-blue);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--apple-blue-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    transform: translateY(-1px);
}

.btn-outline-primary {
    background-color: transparent;
    border: 1.5px solid var(--apple-blue);
    color: var(--apple-blue);
}

.btn-outline-primary:hover {
    background-color: var(--apple-gray-light);
    border-color: var(--apple-blue);
    color: var(--apple-blue);
}

.btn-success {
    background-color: var(--apple-green);
    color: white;
}

.btn-success:hover {
    background-color: #28a745;
    color: white;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

.btn-info {
    background-color: var(--apple-blue);
    color: white;
}

.btn-info:hover {
    background-color: var(--apple-blue-dark);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* Feature cards */
.card.border-info, .card.border-success, .card.border-warning {
    transition: transform 0.2s ease-in-out;
}

.card.border-info:hover, .card.border-success:hover, .card.border-warning:hover {
    transform: translateY(-5px);
}

/* Results page enhancements */
.bg-orange {
    background-color: var(--orange-color) !important;
}

.text-orange {
    color: var(--orange-color) !important;
}

/* Chart containers */
canvas {
    max-height: 400px !important;
}

/* Metrics cards */
.metrics-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    margin-bottom: 1rem;
}

.metrics-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metrics-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Table enhancements */
.table {
    border-radius: 0.5rem;
    overflow: hidden;
}

.table th {
    background-color: #f8f9fa;
    border-top: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* Apple Badge Styling */
.badge {
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: -0.01em;
}

.badge.bg-success {
    background-color: var(--apple-green) !important;
    color: white !important;
}

.badge.bg-warning {
    background-color: var(--apple-orange) !important;
    color: white !important;
}

.badge.bg-danger {
    background-color: var(--apple-red) !important;
    color: white !important;
}

.badge.bg-info {
    background-color: var(--apple-blue) !important;
    color: white !important;
}

/* Apple Alert Styling */
.alert {
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.alert-info {
    background-color: rgba(0, 122, 255, 0.1);
    color: var(--apple-blue-dark);
}

.alert-warning {
    background-color: rgba(255, 149, 0, 0.1);
    color: #c77700;
}

.alert-danger {
    background-color: rgba(255, 59, 48, 0.1);
    color: #d70015;
}

.alert-success {
    background-color: rgba(52, 199, 89, 0.1);
    color: #248a3d;
}

/* Code block styling */
pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.85rem;
    max-height: 400px;
    overflow-y: auto;
}

code {
    color: #e83e8c;
}

/* =========================================
   Enhanced Loading States & Animations
   ========================================= */

/* Loading Overlay - Full Page */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Apple-Style Spinner */
.apple-spinner {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apple-spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--apple-blue);
    border-radius: 50%;
    animation: appleSpinnerRotate 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.apple-spinner-ring:nth-child(2) {
    animation-delay: -0.15s;
    border-top-color: var(--apple-purple);
}

.apple-spinner-ring:nth-child(3) {
    animation-delay: -0.3s;
    border-top-color: var(--apple-green);
}

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

/* Pulsing Dots Loader */
.dots-loader {
    display: inline-flex;
    gap: 8px;
    padding: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--apple-blue);
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.dot:nth-child(1) {
    animation-delay: -0.32s;
}

.dot:nth-child(2) {
    animation-delay: -0.16s;
    background: var(--apple-purple);
}

.dot:nth-child(3) {
    background: var(--apple-green);
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Skeleton Loading Placeholders */
.skeleton {
    background: linear-gradient(90deg,
        var(--apple-gray-light) 0%,
        var(--apple-gray-2) 50%,
        var(--apple-gray-light) 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-card {
    height: 200px;
    border-radius: 18px;
}

@keyframes skeletonShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Progress Bar with Animation */
.progress-animated {
    position: relative;
    overflow: hidden;
    background: var(--apple-gray-light);
    border-radius: 10px;
    height: 8px;
}

.progress-bar-animated {
    height: 100%;
    background: linear-gradient(90deg,
        var(--apple-blue) 0%,
        var(--apple-purple) 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: width 0.4s ease;
}

.progress-bar-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Bouncing Loading Indicator */
.bouncing-loader {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}

.bouncing-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--apple-blue);
    animation: bouncingDot 1.4s infinite ease-in-out both;
}

.bouncing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.bouncing-dot:nth-child(2) {
    animation-delay: -0.16s;
    background: var(--apple-purple);
}

.bouncing-dot:nth-child(3) {
    background: var(--apple-green);
}

@keyframes bouncingDot {
    0%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
}

/* Ripple Effect Loader */
.ripple-loader {
    position: relative;
    width: 64px;
    height: 64px;
    display: inline-block;
}

.ripple-circle {
    position: absolute;
    border: 3px solid var(--apple-blue);
    opacity: 1;
    border-radius: 50%;
    animation: rippleExpand 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.ripple-circle:nth-child(2) {
    animation-delay: -0.5s;
}

@keyframes rippleExpand {
    0% {
        top: 32px;
        left: 32px;
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        top: 0;
        left: 0;
        width: 64px;
        height: 64px;
        opacity: 0;
    }
}

/* Spinning Badge Loader */
.spinning-badge {
    display: inline-block;
    animation: spin360 2s linear infinite;
}

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

/* Fade In Animation for Content */
.fade-in-content {
    animation: fadeInScale 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Slide In From Bottom */
.slide-in-bottom {
    animation: slideInBottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

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

/* Card Flip Animation */
.flip-card {
    animation: flipCard 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes flipCard {
    0% {
        transform: perspective(1000px) rotateY(-10deg);
        opacity: 0;
    }
    100% {
        transform: perspective(1000px) rotateY(0deg);
        opacity: 1;
    }
}

/* Button Loading State */
.btn-loading {
    position: relative;
    pointer-events: none;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: buttonSpinner 0.8s linear infinite;
}

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

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.fa-spin {
    animation: spin 1s linear infinite;
}

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

/* Pulse Animation for Important Elements */
.pulse-animation {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 122, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 122, 255, 0);
    }
}

/* Shimmer Effect for Loading Cards */
.shimmer-card {
    position: relative;
    overflow: hidden;
    background: var(--apple-gray-light);
}

.shimmer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.6) 50%,
        transparent 100%);
    animation: shimmerSlide 2s ease-in-out infinite;
}

@keyframes shimmerSlide {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Dropdown menu enhancements */
.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
}

.dropdown-header {
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Apple Footer */
footer {
    margin-top: auto;
    background-color: var(--apple-gray-light);
    color: var(--apple-text-secondary);
    border-top: 1px solid var(--apple-gray-2);
    font-size: 14px;
}

footer a {
    color: var(--apple-blue);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Apple Table Styling */
.table {
    font-size: 15px;
    border-radius: 12px;
    overflow: hidden;
}

.table thead th {
    background-color: var(--apple-gray-light);
    color: var(--apple-text);
    border-bottom: 1px solid var(--apple-gray-2);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.01em;
    padding: 14px 16px;
}

.table tbody tr {
    border-bottom: 1px solid var(--apple-gray-2);
    transition: background-color 0.2s ease;
}

.table tbody tr:hover {
    background-color: var(--apple-gray-light);
}

.table tbody td {
    padding: 14px 16px;
}

/* Apple Container Spacing */
.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

/* Apple Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: var(--apple-text);
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 48px;
    line-height: 1.08349;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 1.125;
}

h3 {
    font-size: 24px;
    line-height: 1.16667;
}

h4 {
    font-size: 20px;
    line-height: 1.2;
}

h5 {
    font-size: 17px;
    line-height: 1.23536;
}

h6 {
    font-size: 15px;
    line-height: 1.26667;
}

/* Fix text color on dark backgrounds */
.card-header h1,
.card-header h2,
.card-header h3,
.card-header h4,
.card-header h5,
.card-header h6,
.card-header .card-title,
.card-header p,
.card-header .card-text {
    color: inherit !important;
}

.bg-primary,
.bg-success,
.bg-info,
.bg-danger,
.bg-dark {
    color: white !important;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-success h1,
.bg-success h2,
.bg-success h3,
.bg-success h4,
.bg-success h5,
.bg-success h6,
.bg-info h1,
.bg-info h2,
.bg-info h3,
.bg-info h4,
.bg-info h5,
.bg-info h6,
.bg-danger h1,
.bg-danger h2,
.bg-danger h3,
.bg-danger h4,
.bg-danger h5,
.bg-danger h6 {
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .metrics-card h3 {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .table-responsive {
        border-radius: 0.5rem;
    }
}

/* Toast notifications */
.toast {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175);
    border-radius: 0.5rem;
}

.toast-body {
    padding: 1rem;
    font-weight: 500;
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Progress indicators */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 4px;
    transition: width 0.6s ease;
}

/* Instance type tags */
.instance-type-tag {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.instance-type-tag:hover {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

/* Enhanced Apple-Style Features */

/* Hero section styling */
.hero-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, var(--apple-background-secondary) 100%);
}

.hero-section h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.07143;
    letter-spacing: -0.005em;
    margin-bottom: 8px;
}

.hero-section .lead {
    font-size: 28px;
    line-height: 1.14286;
    font-weight: 400;
    letter-spacing: 0.007em;
    color: var(--apple-text-secondary);
    margin-bottom: 24px;
}

/* Apple-style feature cards with hover lift */
.feature-card {
    background: white;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Apple-style section headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 48px 0 0 0;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 21px;
    line-height: 1.381;
    font-weight: 400;
    letter-spacing: 0.011em;
    color: var(--apple-text-secondary);
}

/* Apple-style glass morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Apple-style info boxes */
.info-box {
    background: var(--apple-gray-light);
    border-radius: 14px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h5 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
}

.info-box p {
    font-size: 15px;
    line-height: 1.47059;
    color: var(--apple-text-secondary);
    margin-bottom: 0;
}

/* Apple-style list styling */
ul.apple-list {
    list-style: none;
    padding-left: 0;
}

ul.apple-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    line-height: 1.47059;
}

ul.apple-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--apple-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Apple-style code blocks */
code {
    background-color: var(--apple-gray-light);
    color: var(--apple-text);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Courier New', monospace;
    font-size: 15px;
}

/* Apple-style pill badges */
.pill-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--apple-gray-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    margin: 4px;
}

/* Smooth fade-in animation for content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger animation delays for elements */
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
.delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Apple-style divider */
.apple-divider {
    height: 1px;
    background: var(--apple-gray-2);
    margin: 48px 0;
}

/* Enhanced main container spacing */
main.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 64px;
    padding-bottom: 64px;
}

/* Apple-style CTA buttons */
.cta-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--apple-blue);
    color: white;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.cta-button:hover {
    background: var(--apple-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 122, 255, 0.4);
    color: white;
}

/* Responsive typography adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section .lead {
        font-size: 21px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 19px;
    }
}
/* =========================================
   Apple-Style Instance & Region Selectors
   ========================================= */

/* Enhanced Instance Selector Container */
.instance-selector-container {
    background: var(--apple-background);
    border-radius: 14px;
    padding: 20px;
    border: 1px solid var(--apple-gray-2);
}

/* All Instances Compact Grid - Apple Card Style */
.all-instances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

/* Instance Selector Grid - Apple Card Style */
.instance-selector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

/* Individual Instance Card */
.instance-card {
    background: white;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    margin: 8px;
    display: inline-block;
    min-width: 150px;
}

.instance-card:hover {
    border-color: #007aff;
    background: #f0f0f0;
}

.instance-card.selected {
    background: #34c759 !important;
    border-color: #34c759 !important;
    color: white !important;
}

.instance-card.selected * {
    color: white !important;
}

.instance-card-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.instance-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-text);
    flex: 1;
    text-align: left;
}

.instance-card-gpu {
    font-size: 11px;
    color: var(--apple-text-secondary);
    white-space: nowrap;
}

/* Compact Instance Card for "All" View */
.instance-card-compact {
    background: white;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    margin: 8px;
    display: inline-block;
    min-width: 150px;
    text-align: center;
}

.instance-card-compact:hover {
    border-color: #007aff;
    background: #f0f0f0;
}

.instance-card-compact.selected {
    background: #34c759 !important;
    border-color: #34c759 !important;
    color: white !important;
}

.instance-card-compact.selected * {
    color: white !important;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.instance-card-compact .instance-card-icon {
    font-size: 32px;
}

.instance-card-compact .instance-card-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.instance-card-compact .instance-card-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--apple-text);
    word-break: break-word;
}

.instance-card-compact .instance-card-gpu {
    font-size: 11px;
    color: var(--apple-text-secondary);
    white-space: normal;
    line-height: 1.3;
}

/* Unselected state helper text */
.instance-card:not(.selected)::before,
.instance-card-compact:not(.selected)::before {
    content: "Click to select";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--apple-text-secondary);
    opacity: 0;
    transition: opacity 0.2s ease;
    white-space: nowrap;
    pointer-events: none;
}

.instance-card:not(.selected):hover::before,
.instance-card-compact:not(.selected):hover::before {
    opacity: 1;
}

/* Quick Filter Chips - Apple Style */
.quick-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--apple-gray-light);
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background: var(--apple-gray-2);
    transform: scale(1.05);
}

.filter-chip.active {
    background: var(--apple-blue);
    color: white;
}

.filter-chip-icon {
    margin-right: 6px;
    font-size: 16px;
}

/* Region Selector - Visual Grid Style */
.region-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.region-card {
    background: white;
    border: 2px solid var(--apple-gray-3);
    border-radius: 10px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.region-card:hover {
    border-color: var(--apple-blue);
    background: var(--apple-gray-light);
    transform: translateY(-2px);
}

.region-card.selected {
    border-color: var(--apple-green);
    background: rgba(52, 199, 89, 0.05);
    box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.1);
}

.region-card.selected::after {
    content: "✓";
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    background: var(--apple-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

.region-card-flag {
    font-size: 24px;
    margin-bottom: 6px;
}

.region-card-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--apple-text);
}

/* Search Box - Apple Style */
.apple-search-box {
    position: relative;
    margin-bottom: 16px;
}

.apple-search-input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid var(--apple-gray-3);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
}

.apple-search-input:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.apple-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--apple-text-secondary);
    font-size: 16px;
}

/* GPU Family Group Headers */
.gpu-family-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--apple-gray-light);
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 12px;
}

.gpu-family-header:first-child {
    margin-top: 0;
}

.gpu-family-icon {
    font-size: 24px;
}

.gpu-family-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--apple-text);
    margin: 0;
}

.gpu-family-subtitle {
    font-size: 13px;
    color: var(--apple-text-secondary);
    margin-left: auto;
}

/* Collapsible Section - Apple Style */
.collapsible-section {
    border: 1px solid var(--apple-gray-2);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: white;
    cursor: pointer;
    transition: background 0.2s ease;
}

.collapsible-header:hover {
    background: var(--apple-gray-light);
}

.collapsible-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.collapsible-chevron {
    font-size: 18px;
    color: var(--apple-text-secondary);
    transition: transform 0.3s ease;
}

.collapsible-section.expanded .collapsible-chevron {
    transform: rotate(180deg);
}

.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collapsible-section.expanded .collapsible-content {
    max-height: 3000px;
}

.collapsible-body {
    padding: 20px;
    border-top: 1px solid var(--apple-gray-2);
}

/* Grid layout for collapsible sections */
.gpu-families-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

/* Selection Counter Badge */
.selection-counter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    background: var(--apple-green);
    color: white;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    margin-left: 8px;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(52, 199, 89, 0.4);
    }
    50% {
        box-shadow: 0 2px 16px rgba(52, 199, 89, 0.6);
    }
}

/* Action Buttons Row */
.selector-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.selector-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--apple-gray-3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.selector-action-btn:hover {
    background: var(--apple-gray-light);
    border-color: var(--apple-blue);
    color: var(--apple-blue);
}

.selector-action-btn:active {
    transform: scale(0.98);
}

/* Enhanced Form Check - Apple Toggle Style */
.apple-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: white;
    border: 1px solid var(--apple-gray-2);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.apple-toggle-wrapper:hover {
    background: var(--apple-gray-light);
}

.apple-toggle-switch {
    position: relative;
    width: 51px;
    height: 31px;
}

.apple-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.apple-toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--apple-gray-3);
    border-radius: 31px;
    transition: all 0.3s ease;
}

.apple-toggle-slider::before {
    content: "";
    position: absolute;
    height: 27px;
    width: 27px;
    left: 2px;
    bottom: 2px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.apple-toggle-switch input:checked + .apple-toggle-slider {
    background: var(--apple-green);
}

.apple-toggle-switch input:checked + .apple-toggle-slider::before {
    transform: translateX(20px);
}

.apple-toggle-label {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
    color: var(--apple-text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .instance-selector-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 8px;
    }

    .region-selector-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .instance-card {
        padding: 12px;
    }

    .instance-card-icon {
        font-size: 28px;
    }

    .gpu-family-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .gpu-family-subtitle {
        margin-left: 0;
    }
}

/* Smooth Scrolling for Selector Containers - Disabled to show all without scrolling */
.selector-scroll-container {
    /* Removed max-height to show all content without scrolling */
    padding-right: 8px;
}

.selector-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.selector-scroll-container::-webkit-scrollbar-track {
    background: var(--apple-gray-light);
    border-radius: 4px;
}

.selector-scroll-container::-webkit-scrollbar-thumb {
    background: var(--apple-gray-4);
    border-radius: 4px;
}

.selector-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--apple-gray-5);
}

/* =========================================
   Enhanced Apple-Style Instance Cards
   ========================================= */

/* Selection Badge - Compact Counter */
.apple-selection-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--apple-green) 0%, #28a745 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(52, 199, 89, 0.3);
    margin-bottom: 12px;
    font-weight: 600;
}

.selection-count-wrapper {
    display: flex;
    align-items: center;
    gap: 4px;
}

.selection-count-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.selection-count-text {
    font-size: 12px;
    opacity: 0.9;
}

@keyframes popIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Selected Instances Display - Condensed */
.apple-selected-display {
    background: var(--apple-gray-light);
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 16px;
    border: 1px solid var(--apple-gray-2);
    max-height: 200px;
    overflow: hidden;
}

.selected-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.selected-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--apple-text);
}

.clear-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: white;
    border: 1px solid var(--apple-gray-3);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--apple-red);
    cursor: pointer;
    transition: all 0.2s ease;
}

.clear-all-btn:hover {
    background: var(--apple-red);
    color: white;
    border-color: var(--apple-red);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.3);
}

.selected-instances-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 140px;
    overflow-y: auto;
    padding-right: 8px;
}

.selected-instances-list::-webkit-scrollbar {
    width: 6px;
}

.selected-instances-list::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.selected-instances-list::-webkit-scrollbar-thumb {
    background: var(--apple-gray-4);
    border-radius: 3px;
}

.selected-instances-list::-webkit-scrollbar-thumb:hover {
    background: var(--apple-gray-5);
}

.selected-family-group {
    background: white;
    border-radius: 8px;
    padding: 8px 10px;
}

.family-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-blue);
    margin-bottom: 6px;
}

.family-instances {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.instance-chip {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: var(--apple-gray-light);
    border: 1px solid var(--apple-gray-2);
    border-radius: 5px;
    font-size: 11px;
    font-weight: 500;
    color: var(--apple-text);
}

/* Search Wrapper */
.apple-search-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--apple-text-secondary);
    font-size: 16px;
    pointer-events: none;
}

.apple-search-input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1px solid var(--apple-gray-3);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: white;
}

.apple-search-input:focus {
    outline: none;
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1);
}

.apple-search-input::placeholder {
    color: var(--apple-text-secondary);
}

/* Quick Actions */
.apple-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.apple-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--apple-gray-3);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--apple-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.apple-action-btn:hover {
    background: var(--apple-blue);
    color: white;
    border-color: var(--apple-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.apple-action-btn:active {
    transform: translateY(0);
}

/* Region Filter Button States */
.region-filter-btn.active {
    background: var(--apple-blue) !important;
    color: white !important;
    border-color: var(--apple-blue) !important;
    opacity: 1 !important;
}

.region-filter-btn:not(.active) {
    background: var(--apple-gray-light) !important;
    color: var(--apple-text-secondary) !important;
    border-color: var(--apple-gray-3) !important;
    opacity: 0.6 !important;
}

/* Instance Cards Grid */
.apple-instance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 8px;
    max-height: 500px;
    overflow-y: auto;
    padding: 4px;
    border-radius: 12px;
}

.apple-instance-grid::-webkit-scrollbar {
    width: 8px;
}

.apple-instance-grid::-webkit-scrollbar-track {
    background: var(--apple-gray-light);
    border-radius: 4px;
}

.apple-instance-grid::-webkit-scrollbar-thumb {
    background: var(--apple-gray-4);
    border-radius: 4px;
}

.apple-instance-grid::-webkit-scrollbar-thumb:hover {
    background: var(--apple-gray-5);
}

/* Individual Instance Card */
.apple-instance-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.instance-card-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: white;
    border: 2px solid var(--apple-gray-3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin: 0;
    min-height: 100px;
}

.instance-card-label:hover {
    border-color: var(--apple-blue);
    background: var(--apple-gray-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.apple-instance-card.selected .instance-card-label {
    border-color: var(--apple-green);
    background: linear-gradient(135deg, var(--apple-green) 0%, #28a745 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.4);
}

.instance-card-icon {
    font-size: 24px;
    margin-bottom: 6px;
    color: var(--apple-blue);
    transition: all 0.2s ease;
}

.apple-instance-card.selected .instance-card-icon {
    color: white;
}

.instance-card-content {
    text-align: center;
    flex: 1;
}

.instance-card-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--apple-text);
    margin-bottom: 2px;
    word-break: break-word;
}

.apple-instance-card.selected .instance-card-name {
    color: white;
}

.instance-card-family {
    font-size: 10px;
    color: var(--apple-text-secondary);
    font-weight: 500;
}

.apple-instance-card.selected .instance-card-family {
    color: rgba(255, 255, 255, 0.9);
}

.instance-card-check {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

.apple-instance-card.selected .instance-card-check {
    opacity: 1;
    transform: scale(1);
    animation: checkPop 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instance-card-check i {
    color: var(--apple-green);
    font-size: 14px;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cardSelect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .apple-instance-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }

    .instance-card-label {
        padding: 12px 8px;
        min-height: 100px;
    }

    .instance-card-icon {
        font-size: 28px;
    }

    .instance-card-name {
        font-size: 13px;
    }
}
