/* ==========================================
   PAGES.CSS - Page-Specific Layouts
   Page containers and layouts ONLY
   Component styles are in components.css
   ========================================== */

/* ==========================================
   DETAIL PAGE
   ========================================== */

.detail-container {
    max-width: 900px;
    margin: var(--space-xl) auto;
}

/* ==========================================
   STATIC CONTENT PAGES
   ========================================== */

.info-page {
    max-width: 900px;
    margin: var(--space-xl) auto;
    padding: 0 var(--space-md) var(--space-2xl);
}

.info-page-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-xl);
}

.info-page-header {
    margin-bottom: var(--space-xl);
}

.info-page-header h1 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.info-page-header p {
    color: var(--color-text-muted);
    max-width: 60ch;
}

.info-page-section + .info-page-section {
    margin-top: var(--space-xl);
}

.info-page-section h2 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.info-page-section p,
.info-page-section li {
    line-height: var(--line-height-relaxed);
}

.info-page-section ul {
    padding-left: 1.25rem;
}

.info-page-callout {
    margin-top: var(--space-lg);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    background: var(--color-primary-faded);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.info-page-meta {
    margin-top: var(--space-xl);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* Hero image gallery at top of detail page */
.detail-hero {
    margin-bottom: var(--space-xl);
}

.poi-header {
    background: var(--color-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.poi-header h1 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

/* Category badge with dot indicator (pill style) */
.category-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-pill);
    background: var(--color-primary-faded);
    color: var(--color-text);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--space-md);
}

.category-badge-pill .category-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background-color: var(--category-color, var(--color-primary));
}

.category-badge-pill .category-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* Description */
.poi-description-text {
    margin: var(--space-md) 0;
    line-height: var(--line-height-normal);
}

/* Reviews section header with rating */
.reviews-section-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-primary);
}

.reviews-section-header h2 {
    border: none;
    padding: 0;
    margin: 0;
}

.reviews-avg-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-warning-bg);
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: var(--color-warning-text);
}

/* No reviews text */
.no-reviews-text {
    color: var(--color-text-muted);
}

/* ==========================================
   IMAGE GALLERY
   ========================================== */

.image-gallery {
    margin-top: 0;
}

.gallery-main {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-md);
    cursor: pointer;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-main img:hover {
    transform: scale(1.02);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: var(--space-sm);
}

.gallery-thumbnail {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
}

.gallery-thumbnail:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.gallery-thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-primary);
}

/* ==========================================
   LIGHTBOX
   ========================================== */

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 51, 48, 0.95);
    z-index: var(--z-lightbox);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

.lightbox-close:hover {
    color: var(--color-primary-light);
}

.lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    border-radius: var(--radius-lg);
    transition: background var(--transition-fast);
}

.lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.5);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
}

.review-form {
    background: var(--color-background);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.review-form h3 {
    margin-bottom: var(--space-lg);
    color: var(--color-text-dark);
}

/* ==========================================
   DASHBOARD PAGE
   ========================================== */

.dashboard-container {
    max-width: var(--container-lg);
    margin: var(--space-xl) auto;
    padding: 0 var(--space-md);
}

.dashboard-header {
    background: var(--color-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.dashboard-header h1 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.poi-info h3 {
    margin: 0 0 var(--space-sm) 0;
    color: var(--color-text-dark);
}

.poi-info a {
    text-decoration: none;
    color: var(--color-text-dark);
}

.poi-info a:hover {
    color: var(--color-primary);
}

/* ==========================================
   SUBMIT POI PAGE
   ========================================== */

.submit-container {
    max-width: var(--container-md);
    margin: var(--space-xl) auto;
    padding: 0 var(--space-md);
}

.submit-form {
    background: var(--color-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.submit-header {
    margin-bottom: var(--space-xl);
}

.submit-header h1 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.submit-header p {
    color: var(--color-text-muted);
}

/* Features grid for checkboxes */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* ==========================================
   HOMEPAGE
   ========================================== */

@keyframes pulse {
    0% {
        transform: scale(1);
        background: var(--color-primary);
    }
    50% {
        transform: scale(1.5);
        background: var(--color-secondary);
    }
    100% {
        transform: scale(1);
        background: var(--color-primary);
    }
}

/* ==========================================
   FILTER STYLES
   ========================================== */

.filter-container {
    background: var(--color-background-alt);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: var(--radius-lg);
}

/* Modern Filter Panel */
.filter-panel {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--gradient-primary);
    color: var(--color-text-on-primary);
}

.filter-header h3 {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
}

.filter-summary {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.filter-count-badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    backdrop-filter: blur(10px);
}

.clear-filters-btn {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-text-on-primary);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
}

.clear-filters-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.filter-section {
    border-bottom: none;
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--color-secondary);
    border: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-dark);
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.filter-section-header.collapsed {
    background: var(--color-secondary-light);
    box-shadow: none;
}

.filter-section-header:hover {
    color: #fff;
    background: var(--color-primary);
}

.toggle-icon {
    color: #fff;
}

.filter-section-header.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.filter-section-content {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    background: var(--color-secondary-light);
}

.filter-section-content.active {
    max-height: 500px;
    padding: var(--space-sm) var(--space-lg) var(--space-md) var(--space-lg);
    overflow: visible;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding: 0;
    margin: 0;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem var(--space-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.3);
    color: var(--color-text-body);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    user-select: none;
    transition: all var(--transition-fast);
}

.filter-pill:hover,
.filter-pill.active {
    color: #fff;
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    box-shadow: var(--shadow-sm);
}

.pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pill-icon img {
    display: block;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    filter: invert(1) brightness(0.3);
}

.filter-pill:hover .pill-icon img,
.filter-pill.active .pill-icon img {
    filter: none;
}

.pill-label {
    line-height: 1;
}

.rating-pills .filter-pill {
    flex: 1;
    justify-content: center;
    min-width: 120px;
}

.rating-pills .filter-pill.active {
    background: var(--color-warning);
    border-color: var(--color-warning);
    color: #000;
}

.row {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.col-md-4 {
    flex: 1;
    min-width: 250px;
}

#category-filters label,
#feature-filters label {
    margin-right: 15px;
    display: inline-block;
}

#min-rating-filter {
    width: 100%;
    padding: 8px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-input);
    margin-top: 5px;
}

/* ==========================================
   MY SUBMISSIONS PAGE
   ========================================== */

.submissions-container {
    max-width: var(--container-lg);
    margin: var(--space-xl) auto;
    padding: 0 var(--space-md);
}

.submissions-header {
    background: var(--color-surface);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.submissions-header h1 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-lg);
}

.submissions-header .stats {
    display: flex;
    gap: var(--space-xl);
    margin: var(--space-lg) 0;
}

.poi-category {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) 0.75rem;
    border-radius: var(--radius-pill);
    font-size: var(--font-size-sm);
    color: #fff;
    font-weight: var(--font-weight-semibold);
}

.poi-description {
    color: var(--color-text-body);
    line-height: var(--line-height-normal);
    margin-bottom: var(--space-md);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.poi-meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--color-border-light);
    margin-top: var(--space-md);
}

.poi-meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.coordinates {
    font-family: var(--font-family-mono);
    font-size: var(--font-size-sm);
}

.poi-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.submission-item {
    background: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-lg);
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-md);
}

/* ==========================================
   AUTH PAGES
   ========================================== */

.auth-container {
    max-width: var(--container-sm);
    margin: var(--space-2xl) auto;
    padding: 0 var(--space-md);
}

.auth-box {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.auth-box h2 {
    text-align: center;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.auth-header-icon {
    text-align: center;
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.auth-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.auth-form .form-group {
    margin-bottom: var(--space-lg);
}

/* Full-width auth buttons */
.auth-box button[type="submit"],
.auth-box .btn-submit {
    width: 100%;
    min-height: 48px;
    border-radius: var(--radius-xl);
    background: var(--color-primary);
    color: var(--color-text-on-primary);
    border: none;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.auth-box button[type="submit"]:hover {
    background: var(--color-primary-dark);
    box-shadow: var(--shadow-primary);
}

.auth-forgot-link {
    text-align: center;
    margin-top: var(--space-md);
    display: block;
    color: var(--color-primary);
    text-decoration: none;
    font-size: var(--font-size-sm);
}

.auth-forgot-link:hover {
    text-decoration: underline;
}

.auth-links,
.auth-link {
    text-align: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border-light);
    color: var(--color-text-muted);
}

.auth-links a,
.auth-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.auth-links a:hover,
.auth-link a:hover {
    text-decoration: underline;
}

/* ==========================================
   DELETE CONFIRMATION PAGES
   ========================================== */

.delete-container {
    max-width: 600px;
    margin: var(--space-2xl) auto;
    padding: 0 var(--space-md);
}

.delete-warning {
    background: var(--color-warning-bg);
    border-left: 4px solid var(--color-warning);
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
    border-radius: var(--radius-md);
}

.delete-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.btn-cancel {
    background: var(--color-surface-secondary);
    color: var(--color-text-muted);
    border-radius: var(--radius-xl);
}

/* ==========================================
   LIST VIEW
   ========================================== */

.list-container {
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: var(--space-xl);
}

.list-container .filter-section {
    background: var(--color-background-alt);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
}

.list-container .filter-section h4 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-md);
}

.poi-list {
    display: grid;
    gap: var(--space-lg);
}

/* ==========================================
   HOMEPAGE APP LAYOUT
   ========================================== */

.app {
    padding: 0;
}

.app .map-container {
    z-index: var(--z-map);
    margin-top: 0;
}

/* Quick Filters for List Page */
.quick-filters-list-page {
    margin-bottom: var(--space-lg);
}

.quick-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.quick-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.6rem 1.2rem;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-pill);
    color: var(--color-text-body);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.quick-filter-pill:hover {
    border-color: var(--qf-color, var(--color-primary));
    background: color-mix(in srgb, var(--qf-color, var(--color-primary)) 10%, white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.quick-filter-pill.active {
    background: var(--qf-color, var(--color-primary));
    border-color: var(--qf-color, var(--color-primary));
    color: var(--color-text-on-primary);
}

.quick-filter-pill.clear-pill {
    background: var(--color-background);
    border-color: var(--color-border-input);
    color: var(--color-text-muted);
}

.quick-filter-pill.clear-pill:hover {
    background: var(--color-danger-bg);
    border-color: var(--color-danger);
    color: var(--color-danger);
}

.quick-filter-pill-icon {
    width: 18px;
    height: 18px;
    filter: invert(0.3) sepia(1) saturate(5) hue-rotate(210deg);
}

.quick-filter-pill.active .quick-filter-pill-icon {
    filter: brightness(0) invert(1);
}

/* List page extended search */
.list-page-filters .extended-search-content {
    background: var(--color-background-alt);
    border-radius: var(--radius-lg);
    margin-top: var(--space-sm);
}

.list-page-filters .extended-search-content.expanded {
    padding: 0;
}

/* Empty state card */
.empty-state-card {
    background: var(--color-surface);
    padding: var(--space-2xl) var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.empty-state-card .empty-state-icon {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-md);
}

.empty-state-card h3 {
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.empty-state-card p {
    color: var(--color-text-muted);
}

.empty-state-card a {
    color: var(--color-primary);
}

/* ==========================================
   RESPONSIVE DESIGN - Pages
   ========================================== */

/* Tablet and Below (768px) */
@media (max-width: 768px) {
    /* General containers */
    .detail-container,
    .dashboard-container,
    .submit-container,
    .submissions-container,
    .list-container {
        margin: var(--space-md) auto;
        padding: 0 var(--space-md);
    }

    /* Headers */
    .poi-header,
    .dashboard-header,
    .submit-form,
    .auth-box {
        padding: var(--space-lg);
    }

    .poi-header h1 {
        font-size: var(--font-size-xl);
    }

    .dashboard-header h1 {
        font-size: var(--font-size-xl);
    }

    /* Gallery */
    .gallery-main {
        height: 300px;
    }

    /* Filter Container */
    .filter-container {
        padding: 15px;
    }

    /* Filter Panel - Mobile */
    .filter-panel {
        margin-bottom: var(--space-md);
    }

    .filter-header {
        padding: var(--space-md);
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .filter-summary {
        width: 100%;
        justify-content: space-between;
    }

    .filter-section-header {
        padding: 0.75rem var(--space-md);
    }

    .filter-section-content.active {
        padding: var(--space-md);
    }

    .filter-pills {
        gap: var(--space-sm);
    }

    .filter-pill {
        font-size: var(--font-size-sm);
        padding: var(--space-sm) 0.75rem;
    }

    .rating-pills {
        flex-direction: column;
    }

    .rating-pills .filter-pill {
        width: 100%;
        min-width: unset;
    }

    .row {
        flex-direction: column;
        gap: var(--space-md);
    }

    .col-md-4 {
        min-width: 100%;
    }

    #category-filters label,
    #feature-filters label {
        display: block;
        margin-bottom: var(--space-sm);
        margin-right: 0;
    }

    /* Stats Display */
    .stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-item {
        width: 100%;
    }

    /* Button Groups and Actions */
    .button-group,
    .poi-actions,
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .button-group a,
    .button-group button,
    .poi-actions a,
    .form-actions a,
    .form-actions button {
        width: 100%;
        text-align: center;
    }

    /* Review and Submission Items */
    .submission-header {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    /* Auth Pages */
    .auth-container {
        margin: var(--space-xl) auto;
        padding: 0 var(--space-md);
    }

    .auth-box {
        padding: var(--space-lg);
    }

    /* Delete Confirmation */
    .delete-container {
        margin: var(--space-xl) auto;
        padding: 0 var(--space-md);
    }

    .delete-actions {
        flex-direction: column;
    }

    .delete-actions button,
    .delete-actions a {
        width: 100%;
    }

    /* Reviews section header */
    .reviews-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile Only (480px and below) */
@media (max-width: 480px) {
    .poi-header h1 {
        font-size: var(--font-size-lg);
    }

    .review-form,
    .submit-form {
        padding: var(--space-md);
    }

    .filter-header h3 {
        font-size: var(--font-size-base);
    }

    .gallery-main {
        height: 200px;
    }
}

/* Responsive adjustments for list page quick filters */
@media (max-width: 767px) {
    .quick-filters-row {
        gap: var(--space-sm);
    }

    .quick-filter-pill {
        padding: var(--space-sm) 0.8rem;
        font-size: 0.8rem;
    }
}
