/* HighNoon Language Framework Page - Enterprise-Level Styling */
/* ============================================================================ */

/* Page Container */
.hnl-page {
    max-width: 100%;
    overflow-x: hidden;
}

.hnl-animate-slide-up {
    animation: hnlSlideUp 0.6s ease-out forwards;
}

@keyframes hnlSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Spacer */
.hnl-section-spacer {
    height: 80px;
}

@media (max-width: 768px) {
    .hnl-section-spacer {
        height: 48px;
    }
}

/* ============================================================================
   BREADCRUMBS
   ============================================================================ */

.hnl-page .breadcrumbs {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.hnl-page .breadcrumbs ol {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hnl-page .breadcrumbs li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.hnl-page .breadcrumbs li::after {
    content: '/';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.hnl-page .breadcrumbs li:last-child::after {
    display: none;
}

.hnl-page .breadcrumbs li:last-child {
    color: var(--accent-gold);
}

.hnl-page .breadcrumbs a {
    color: var(--accent-gold);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hnl-page .breadcrumbs a:hover {
    color: white;
}

/* Shared Section Styles */
.hnl-section-title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-shadow: 0 0 40px rgba(244, 196, 48, 0.3);
}

.hnl-section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hnl-highlight {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.hnl-highlight--gold {
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.2), rgba(204, 164, 43, 0.2));
    color: var(--accent-gold);
    border: 1px solid rgba(244, 196, 48, 0.3);
}

.hnl-highlight--green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hnl-highlight--blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* Section Visibility Animation */
.hnl-section--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hnl-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hnl-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hnl-hero__neural-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(244, 196, 48, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 30% 70%, rgba(204, 164, 43, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 70% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    animation: hnlNeuralGlow 12s ease-in-out infinite alternate;
}

@keyframes hnlNeuralGlow {
    0% {
        opacity: 0.7;
        transform: scale(1);
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hnl-hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(244, 196, 48, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(244, 196, 48, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.hnl-hero__glow-orb {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle, rgba(244, 196, 48, 0.2) 0%, rgba(204, 164, 43, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    animation: hnlOrbPulse 8s ease-in-out infinite;
}

@keyframes hnlOrbPulse {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-50%) scale(1.1);
        opacity: 1;
    }
}

.hnl-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hnl-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-gold);
    padding: 8px 20px;
    background: rgba(244, 196, 48, 0.15);
    border: 1px solid rgba(244, 196, 48, 0.3);
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.hnl-hero__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 60px rgba(244, 196, 48, 0.4);
}

.hnl-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hnl-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hnl-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hnl-hero__btn--primary {
    background: linear-gradient(135deg, #f4c430 0%, #cca42b 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.4);
}

.hnl-hero__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.5);
}

.hnl-hero__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hnl-hero__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 196, 48, 0.5);
}

/* ============================================================================
   WHAT IS IT SECTION
   ============================================================================ */

.hnl-what-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(244, 196, 48, 0.03) 50%, transparent 100%);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hnl-what-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hnl-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 3rem;
    text-align: left;
}

@media (max-width: 900px) {
    .hnl-what-grid {
        grid-template-columns: 1fr;
    }
}

.hnl-architecture-panel {
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.08) 0%, rgba(204, 164, 43, 0.04) 100%);
    border: 1px solid rgba(244, 196, 48, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.hnl-architecture-panel__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.hnl-architecture-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hnl-architecture-item {
    padding-left: 16px;
    border-left: 3px solid rgba(244, 196, 48, 0.3);
}

.hnl-architecture-item__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 6px;
}

.hnl-architecture-item__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.hnl-features-panels {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hnl-feature-panel {
    border-radius: 16px;
    padding: 28px;
}

.hnl-feature-panel--included {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hnl-feature-panel--enterprise {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(79, 70, 229, 0.04) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
}

.hnl-feature-panel__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.hnl-feature-panel--included .hnl-feature-panel__title {
    color: #4ade80;
}

.hnl-feature-panel--enterprise .hnl-feature-panel__title {
    color: #a78bfa;
}

.hnl-feature-panel__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hnl-feature-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 0;
}

.hnl-feature-panel--included .hnl-feature-panel__list li svg {
    color: #4ade80;
    flex-shrink: 0;
    margin-top: 2px;
}

.hnl-feature-panel--enterprise .hnl-feature-panel__list li svg {
    color: #a78bfa;
    flex-shrink: 0;
    margin-top: 2px;
}

.hnl-feature-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    color: #a78bfa;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.hnl-feature-panel__link:hover {
    color: white;
}

/* ============================================================================
   BENEFITS SECTION
   ============================================================================ */

.hnl-benefits-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 50%, transparent 100%);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hnl-benefits-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hnl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 3rem;
}

@media (max-width: 900px) {
    .hnl-benefits-grid {
        grid-template-columns: 1fr;
    }
}

.hnl-benefit-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
}

.hnl-benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.15);
}

.hnl-benefit-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 12px;
    color: #4ade80;
    margin-bottom: 1.25rem;
}

.hnl-benefit-card__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.3rem;
    color: #4ade80;
    margin-bottom: 0.75rem;
}

.hnl-benefit-card__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* ============================================================================
   QUICK START SECTION
   ============================================================================ */

.hnl-quickstart-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.03) 0%, rgba(30, 64, 175, 0.05) 50%, rgba(59, 130, 246, 0.03) 100%);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hnl-quickstart-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hnl-quickstart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 3rem;
    text-align: left;
}

@media (max-width: 900px) {
    .hnl-quickstart-content {
        grid-template-columns: 1fr;
    }
}

/* Code Block Styles */
.hnl-code-block {
    background: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.hnl-code-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hnl-code-block__dots {
    display: flex;
    gap: 6px;
}

.hnl-code-block__dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hnl-code-block__dots span:nth-child(1) {
    background: #ff5f56;
}

.hnl-code-block__dots span:nth-child(2) {
    background: #ffbd2e;
}

.hnl-code-block__dots span:nth-child(3) {
    background: #27ca40;
}

.hnl-code-block__lang {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hnl-code-block__copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hnl-code-block__copy:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.hnl-code-block__pre {
    padding: 20px;
    margin: 0;
    overflow-x: auto;
}

.hnl-code-block__pre code {
    font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #c9d1d9;
    white-space: pre;
}

/* Requirements */
.hnl-quickstart-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hnl-requirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.hnl-requirements__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1.1rem;
    color: #60a5fa;
    margin-bottom: 1rem;
}

.hnl-requirements__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hnl-requirements__list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hnl-requirements__list li:last-child {
    border-bottom: none;
}

.hnl-requirements__name {
    color: var(--text-primary);
    font-weight: 500;
}

.hnl-requirements__version {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'SF Mono', monospace;
    font-size: 0.9rem;
}

.hnl-docs-link {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(244, 196, 48, 0.08);
    border: 1px solid rgba(244, 196, 48, 0.2);
    border-radius: 12px;
    padding: 24px;
}

.hnl-docs-link svg {
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.hnl-docs-link h4 {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.hnl-docs-link p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* ============================================================================
   COMPARISON TABLE SECTION
   ============================================================================ */

.hnl-compare-section {
    padding: 80px 24px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hnl-compare-section__inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hnl-compare-table-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
}

.hnl-compare-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
}

.hnl-compare-table th,
.hnl-compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hnl-compare-table thead tr {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(244, 196, 48, 0.2));
}

.hnl-compare-table th {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
}

.hnl-compare-table th:first-child {
    text-align: left;
}

.hnl-compare-table th:nth-child(2) {
    color: #60a5fa;
}

.hnl-compare-table th:nth-child(3) {
    color: var(--accent-gold);
}

.hnl-compare-table td {
    font-size: 0.95rem;
}

.hnl-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--text-primary);
}

.hnl-compare-table td:nth-child(2) {
    color: rgba(255, 255, 255, 0.7);
}

.hnl-compare-table td:nth-child(3) {
    color: rgba(255, 255, 255, 0.85);
}

.hnl-compare-table tbody tr {
    background: rgba(255, 255, 255, 0.02);
}

.hnl-compare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================================================
   FAQ SECTION
   ============================================================================ */

.hnl-faq-section {
    padding: 80px 24px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.hnl-faq-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.hnl-faq-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hnl-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hnl-faq-item:hover {
    border-color: rgba(244, 196, 48, 0.3);
}

.hnl-faq-item--open {
    border-color: rgba(244, 196, 48, 0.5);
    background: rgba(244, 196, 48, 0.05);
}

.hnl-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Neon-Regular', sans-serif;
    font-size: 1.05rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.hnl-faq-item__question:hover {
    color: var(--accent-gold);
}

.hnl-faq-item__icon {
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.hnl-faq-item__icon.rotated {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.hnl-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.hnl-faq-item--open .hnl-faq-item__answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.hnl-faq-item__answer p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.hnl-cta-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(244, 196, 48, 0.08) 50%, transparent 100%);
    text-align: center;
}

.hnl-cta-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.hnl-cta-section__title {
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-shadow: 0 0 40px rgba(244, 196, 48, 0.4);
}

.hnl-cta-section__description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hnl-cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hnl-cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: 'Neon-Heavy', sans-serif;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hnl-cta-section__btn--primary {
    background: linear-gradient(135deg, #f4c430 0%, #cca42b 100%);
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(244, 196, 48, 0.4);
}

.hnl-cta-section__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 196, 48, 0.5);
}

.hnl-cta-section__btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hnl-cta-section__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(244, 196, 48, 0.5);
}

/* ============================================================================
   RESPONSIVE STYLES
   ============================================================================ */

@media (max-width: 768px) {
    .hnl-hero {
        min-height: 80vh;
        padding: 100px 16px 60px;
    }

    .hnl-hero__title {
        font-size: 2rem;
    }

    .hnl-hero__subtitle {
        font-size: 1.05rem;
    }

    .hnl-section-title {
        font-size: 2rem;
    }

    .hnl-section-subtitle {
        font-size: 1rem;
    }

    .hnl-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .hnl-hero__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hnl-cta-section__actions {
        flex-direction: column;
        align-items: center;
    }

    .hnl-cta-section__btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hnl-compare-table th,
    .hnl-compare-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}