:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #ec4899;
    --bg-color: #f1f5f9;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --ai-color: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex: 1;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--white);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-login,
.btn-signup {
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.btn-login {
    color: var(--text-main);
}

.btn-signup {
    background: var(--primary-color);
    color: var(--white) !important;
}

.btn-signup:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.user-greeting {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Flash Messages */
.flash-messages {
    max-width: 600px;
    margin: 1rem auto;
    padding: 0 5%;
}

.flash-item {
    padding: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
    border: 1px solid transparent;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.flash-danger {
    background: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

.flash-warning {
    background: #fef9c3;
    color: #854d0e;
    border-color: #fef08a;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero-badge {
    display: inline-block;
    background: #dcfce7;
    color: var(--ai-color);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--ai-color);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.hero>p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Professional Search Form */
.professional-form form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-group input,
.form-group select {
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.generate-path-btn {
    padding: 1.2rem;
    font-size: 1.2rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
}

.w-100 {
    width: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* ML PATH UI */
.ml-path {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
}

.path-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badges {
    margin-bottom: 1rem;
}

.badge-ai {
    background: var(--ai-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: bold;
    font-size: 0.9rem;
}

.path-header h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

/* Roadmap Summary Card */
.roadmap-summary {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.summary-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.si-info {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.si-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.si-info strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

.skill-gap-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px dashed var(--primary-color);
}

.skill-gap-box h4 {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.missing-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.ms-tag {
    background: #fee2e2;
    color: #b91c1c;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

/* Vertical Timeline */
.path-timeline {
    position: relative;
    padding-left: 2rem;
}

.path-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    /* Center with marker */
    width: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

.timeline-step {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 3rem;
}

.step-marker {
    position: absolute;
    left: -13px;
    /* 25px - (40px/2) + adjust */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--bg-color);
}

/* Horizontal Cards */
.horizontal-card {
    background: var(--white);
    border-radius: 1rem;
    display: flex;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.horizontal-card:hover {
    transform: translateX(10px);
}

.course-img {
    width: 250px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem 2rem;
    flex: 1;
}

.meta-heads {
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-beginner {
    background: #dcfce7;
    color: #166534;
}

.badge-intermediate {
    background: #fef08a;
    color: #854d0e;
}

.badge-advanced {
    background: #fee2e2;
    color: #991b1b;
}

.badge-provider {
    background: #e0e7ff;
    color: #3730a3;
}

.badge-ai-confidence {
    background: #ecfdf5;
    color: var(--ai-color);
    border: 1px solid var(--ai-color);
}

.badge-rating {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

.course-specs {
    display: flex;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0.5rem 0 1rem;
    font-weight: 500;
}

.course-specs span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.course-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.category {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.desc {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.skills-covered {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.pill {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 0.25rem 0.5rem;
    border-radius: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-small {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 0.5rem;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.save-course-btn.saved {
    background: #fdf2f8;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.save-course-btn.saved i.far {
    font-weight: 900;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

/* Auth Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
}

.auth-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 1.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.05);
}

.auth-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-box>p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-color: var(--primary-color);
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

.big-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-results {
    text-align: center;
    padding: 4rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.no-results h2 {
    margin-bottom: 1rem;
}

.no-results p {
    margin-bottom: 2rem;
    color: var(--text-muted);
}

/* --- Profile Page --- */
.profile-container {
    max-width: 1000px;
    margin: 3rem auto;
}

.profile-header {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.profile-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.profile-stats {
    margin-left: auto;
    display: flex;
    gap: 1.5rem;
}

.stat-box {
    background: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 1rem;
    text-align: center;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.profile-sections {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.profile-courses {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.section-desc {
    color: var(--text-muted);
    margin: 0.5rem 0 2rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.profile-course-card {
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.profile-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-img-placeholder {
    height: 120px;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--ai-color);
}

/* --- Workspace & Progress Tracking --- */
.progress-container {
    margin: 1.5rem 0 2rem;
    background: #e2e8f0;
    height: 12px;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ai-color), #34d399);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.pc-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pc-content h4 {
    font-size: 1.1rem;
    margin: 0.75rem 0;
    line-height: 1.4;
}

.sidebar-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.sidebar-box h3 {
    margin-bottom: 1.5rem;
}

.settings-list {
    list-style: none;
}

.settings-list li {
    margin-bottom: 1rem;
}

.settings-list a {
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: color 0.3s ease;
}

.settings-list a:hover {
    color: var(--primary-color);
}

.mt-3 {
    margin-top: 2rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

/* --- Responsive Media Queries --- */

@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero>p {
        font-size: 1.1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        flex-direction: column;
    }

    .course-img {
        width: 100%;
        height: 200px;
    }

    .path-header h2 {
        font-size: 2rem;
    }

    .step-marker {
        width: 32px;
        height: 32px;
        left: -9px;
        font-size: 1rem;
    }

    .path-timeline::before {
        left: 21px;
    }

    .timeline-step {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .professional-form form {
        padding: 1.5rem;
    }

    .auth-box {
        padding: 2rem 1.5rem;
    }

    .course-actions {
        flex-direction: column;
        align-items: stretch;
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

.export-btn-container {
    text-align: right;
    margin-bottom: 2rem;
}

/* --- AI Loading Overlay --- */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.ai-loader {
    width: 80px;
    height: 80px;
    border: 5px solid var(--bg-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
    margin-bottom: 2rem;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loading-text {
    text-align: center;
}

.loading-text h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.loading-status {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* --- Export/Print Mode --- */
@media print {

    .navbar,
    footer,
    .course-actions,
    .btn-secondary,
    .save-course-btn,
    .hero-badge,
    .export-btn-container,
    .flash-messages {
        display: none !important;
    }

    .container,
    .ml-path {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .horizontal-card {
        box-shadow: none !important;
        border: 1px solid var(--border-color) !important;
        break-inside: avoid;
        margin-bottom: 1rem;
    }

    .step-marker {
        print-color-adjust: exact;
        -webkit-print-color-adjust: exact;
    }
}

/* --- Detail Modal --- */
.detail-modal {
    max-width: 700px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.close-detail-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 100;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.modal-course-header {
    position: relative;
    height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.modal-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.modal-header-info {
    position: relative;
    color: white;
    z-index: 10;
}

.modal-header-info h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.modal-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.75rem;
    font-weight: 600;
}

.modal-body-content {
    padding: 2.5rem;
}

.modal-body-content h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.modal-body-content p {
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.curriculum-preview h4 {
    margin-bottom: 1rem;
}

.curriculum-preview ul {
    list-style: none;
}

.curriculum-preview li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-main);
    font-weight: 500;
}

.curriculum-preview li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.5rem;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.action-bar {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.btn-complete {
    flex: 1;
    background: #f1f5f9;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    padding: 0.6rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-complete.active {
    background: var(--ai-color);
    color: white;
    border-color: var(--ai-color);
}

/* User Notes Workspace */
.notes-workspace {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.notes-workspace label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.course-notes-area {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
    background: #fafafa;
    resize: none;
    transition: all 0.3s ease;
}

.course-notes-area:focus {
    background: white;
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.save-notes-feedback {
    font-size: 0.75rem;
    color: var(--ai-color);
    margin-top: 0.3rem;
    font-weight: 600;
    display: none;
}

/* --- Domain Grouping --- */
.domain-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.3rem;
    color: var(--text-main);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-color);
    margin-bottom: 1.5rem;
}

.domain-count {
    margin-left: auto;
    font-size: 0.85rem;
    background: #f1f5f9;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    color: var(--text-muted);
    font-weight: 700;
}