/* Hero CTA Section Styles for Stock Analyzer */
.hero-cta-section {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.hero-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
    font-weight: 400;
}

.hero-cta-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-cta-title {
        font-size: 32px;
    }
    
    .hero-cta-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-highlight {
        padding: 20px;
    }
}

/* Stock Analyzer Tool Styles */
.stock-analyzer-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    padding: 25px 30px;
    margin: 20px 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
    color: white;
    position: relative;
    overflow: hidden;
}

.stock-analyzer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.stock-analyzer-content {
    position: relative;
    z-index: 1;
}

.stock-analyzer-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stock-analyzer-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stock-analyzer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    line-height: 1.3;
}

.stock-analyzer-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.stock-analyzer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.stock-analyzer-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stock-analyzer-feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.stock-analyzer-feature-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.stock-analyzer-form {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    position: relative;
}

/* (Hero form styles rewritten later as isolated classes: see end of file) */

.stock-analyzer-input {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.stock-analyzer-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: none;
    font-weight: 400;
}

.stock-analyzer-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.stock-analyzer-btn {
    padding: 16px 40px;
    background: white;
    color: #1565c0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-analyzer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

.stock-analyzer-btn:active {
    transform: translateY(0);
}

.stock-analyzer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
}

/* Autocomplete dropdown */
.stock-autocomplete-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.stock-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.stock-autocomplete-dropdown.show {
    display: block;
}

.stock-autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.stock-autocomplete-item:hover,
.stock-autocomplete-item.selected {
    background-color: #f5f7fa;
}

.stock-autocomplete-item:last-child {
    border-bottom: none;
}

.stock-autocomplete-symbol {
    font-weight: 700;
    color: #2c3e50;
    font-size: 15px;
}

.stock-autocomplete-name {
    font-size: 13px;
    color: #757575;
    margin-left: 10px;
}

/* Loading animation */
.stock-analyzer-btn.loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.stock-analyzer-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #1565c0;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Modal styles */
.stock-analyzer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    padding: 16px;
    box-sizing: border-box;
}

.stock-analyzer-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stock-analyzer-modal-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    position: relative;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.stock-analyzer-modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.stock-analyzer-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stock-analyzer-modal-body {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    margin-bottom: 0;
    padding-right: 6px;
}

.stock-analyzer-modal-warning {
    background: #fff3e0;
    border-left: 4px solid #ff9800;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 14px;
    color: #e65100;
}

/* AI preview block inside modal (educational, non-advisory) */
.ai-analysis-preview {
    background: #f8fbff;
    border: 1px solid rgba(21, 101, 192, 0.18);
    border-left: 4px solid rgba(21, 101, 192, 0.55);
    border-radius: 10px;
    padding: 14px 14px;
    margin: 16px 0 10px 0;
}

.ai-analysis-preview__title {
    font-weight: 800;
    color: #1565c0;
    margin-bottom: 8px;
}

.ai-analysis-preview__summary {
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
    white-space: pre-line;
}

.ai-analysis-preview__section-title {
    font-weight: 800;
    color: #263238;
    font-size: 13px;
    margin: 10px 0 6px 0;
}

.ai-analysis-preview__bullets {
    margin: 0 0 10px 18px;
    padding: 0;
    color: #2c3e50;
    font-size: 13px;
    line-height: 1.5;
}

.ai-analysis-preview__bullets li {
    margin: 6px 0;
}

.ai-analysis-preview__risks {
    margin: 0 0 10px 18px;
    padding: 0;
    color: #37474f;
    font-size: 12.5px;
    line-height: 1.5;
}

.ai-analysis-preview__risks li {
    margin: 6px 0;
}

.ai-analysis-preview__disclaimer {
    font-size: 12px;
    color: #607d8b;
    line-height: 1.45;
}

.stock-analyzer-modal-footer {
    text-align: center;
    flex: 0 0 auto;
    padding-top: 14px;
}

.stock-analyzer-modal-subcta {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #1565c0;
    letter-spacing: 0.1px;
}

.stock-analyzer-modal-btn {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.stock-analyzer-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.4);
}

/* Analysis Animation Overlay */
.stock-analysis-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.stock-analysis-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.stock-analysis-overlay.show {
    display: flex;
}

.stock-analysis-overlay:not(.show) {
    animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.stock-analysis-container {
    text-align: center;
    color: white;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 1;
}

.stock-analysis-logo {
    font-size: 64px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

.stock-analysis-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    animation: slideDown 0.5s ease;
}

.stock-analysis-subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
    animation: slideDown 0.6s ease;
}

.stock-analysis-steps {
    margin: 40px 0;
}

.stock-analysis-step {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.stock-analysis-step.active {
    opacity: 1;
    transform: translateX(0);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stock-analysis-step.completed {
    opacity: 0.7;
    background: rgba(255, 255, 255, 0.15);
}

.stock-analysis-step-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stock-analysis-step.active .stock-analysis-step-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.stock-analysis-step-content {
    flex: 1;
    text-align: left;
}

.stock-analysis-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stock-analysis-step-desc {
    font-size: 14px;
    opacity: 0.8;
}

.stock-analysis-step-check {
    font-size: 24px;
    color: #4caf50;
    animation: checkmark 0.5s ease;
}

@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.stock-analysis-progress {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin: 30px 0;
}

.stock-analysis-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, white 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 3px;
    width: 0%;
    transition: width 0.8s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.stock-analysis-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

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

.stock-analysis-percentage {
    font-size: 24px;
    font-weight: 700;
    margin-top: 15px;
    animation: countUp 0.5s ease;
}

/* Particle effects */
.stock-analysis-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.stock-analysis-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Spinner for loading */
.stock-analysis-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.stock-analyzer-disclaimer strong {
    color: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .stock-analyzer-banner {
        padding: 20px 18px;
        margin-top: 0 !important;
    }
    
    .stock-analyzer-header {
        margin-bottom: 12px;
    }
    
    .stock-analyzer-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .stock-analyzer-title {
        font-size: 20px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .stock-analyzer-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .stock-analyzer-features {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .stock-analyzer-feature {
        padding: 10px;
    }
    
    .stock-analyzer-feature-icon {
        font-size: 18px;
        margin-right: 8px;
    }
    
    .stock-analyzer-feature-text {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .stock-analyzer-form {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .stock-autocomplete-wrapper {
        width: 100%;
    }
    
    .stock-analyzer-input {
        width: 100%;
        padding: 14px;
        font-size: 15px;
    }
    
    .stock-analyzer-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .stock-analyzer-disclaimer {
        font-size: 12px;
        line-height: 1.5;
        margin-top: 10px;
    }
    
    .stock-analyzer-modal-content {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .stock-analyzer-modal-title {
        font-size: 20px;
    }
    
    /* Analysis Animation Mobile Styles */
    .stock-analysis-overlay {
        padding: 10px;
        overflow-y: auto;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .stock-analysis-container {
        width: 95%;
        max-width: 100%;
        padding: 10px;
        margin: auto;
    }
    
    .stock-analysis-logo {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .stock-analysis-logo img {
        width: 48px !important;
        height: 48px !important;
    }
    
    .stock-analysis-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .stock-analysis-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .stock-analysis-steps {
        margin: 20px 0;
    }
    
    .stock-analysis-step {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        margin: 10px 0;
        text-align: center;
    }
    
    .stock-analysis-step-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
        margin: 0 auto;
    }
    
    .stock-analysis-step-content {
        width: 100%;
    }
    
    .stock-analysis-step-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .stock-analysis-step-desc {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .stock-analysis-progress {
        margin-top: 20px;
    }
    
    .stock-analysis-progress-bar {
        height: 6px;
    }
    
    .stock-analysis-percentage {
        font-size: 14px;
        margin-top: 8px;
    }
}

/* (Old hero final overrides removed — new isolated hero classes are below) */

/* =========================
   HERO (Homepage) CTA Form
   Isolated classes to avoid conflicts with global stock-analyzer styles
   ========================= */
.hero-cta-section .hero-cta-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.hero-cta-section .hero-cta-input-wrap {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-cta-section .hero-cta-input {
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.26);
    background: rgba(255,255,255,0.96);
    color: #0f172a;
}

.hero-cta-section .hero-cta-input::placeholder {
    text-transform: none;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.55);
}

.hero-cta-section .hero-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
}

.hero-cta-section .hero-cta-btn {
    width: 100%;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.26);
    color: #ffffff;
    background: rgba(255,255,255,0.14);
    box-shadow: none;
    white-space: normal;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.hero-cta-section .hero-cta-btn:hover {
    transform: translateY(-1px);
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.34);
}

.hero-cta-section .hero-cta-btn:active {
    transform: translateY(0);
}

.hero-cta-section .hero-cta-btn:focus-visible {
    outline: 3px solid rgba(66, 165, 245, 0.65);
    outline-offset: 2px;
}

/* Subtle differentiation between actions */
.hero-cta-section .hero-cta-btn--check {
    background: rgba(255,255,255,0.12);
}

.hero-cta-section .hero-cta-btn--analyze {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.34);
}

/* Desktop: keep input on its own row, buttons side-by-side */
@media (min-width: 769px) {
    .hero-cta-section .hero-cta-form {
        gap: 10px;
    }

    .hero-cta-section .hero-cta-input {
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 12px;
    }

    .hero-cta-section .hero-cta-actions {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-cta-section .hero-cta-btn {
        padding: 14px 16px;
        font-size: 16px;
        white-space: nowrap;
    }
}

