


.city-page-header {
    display: block;
    
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.city-page-titles h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.city-page-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.view-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.sort-dropdown {
    position: relative;
}

.sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text);
    transition: background-color 0.2s, box-shadow 0.2s;
    width: 100%;
    
}

.sort-trigger:hover {
    background-color: #f1f3f5;
}

.sort-trigger[aria-expanded="true"] {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.sort-trigger-icon,
.sort-trigger-arrow {
    color: var(--color-text-muted);
}

.sort-trigger-text {
    white-space: nowrap;
    
}

.sort-trigger-arrow {
    margin-left: auto;
    transition: transform 0.2s;
}

.sort-trigger[aria-expanded="true"] .sort-trigger-arrow {
    transform: rotate(180deg);
}

.sort-options {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 0.5rem;
    z-index: 10;
    width: 100%;
}

.sort-options.open {
    display: block;
}

.sort-option {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.sort-option:hover {
    background-color: #f1f3f5;
}

.sort-option.active {
    color: var(--color-primary);
    font-weight: 700;
}


.view-switcher {
    display: flex;
    background-color: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 5px;
    flex-shrink: 0;
}

.view-btn {
    background-color: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s, color 0.2s;
}

.view-btn:hover:not(.active) {
    background-color: #e9ecef;
}

.view-btn.active {
    background-color: var(--color-surface);
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.view-btn:disabled {
    color: #ced4da;
    cursor: not-allowed;
}




.view-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.view-list .hotel-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    
    background: white;
    border-radius: var(--border-radius);
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    
    border: 1px solid #e0e0e0;
}

.view-list .hotel-item-image {
    flex-shrink: 0;
    width: 250px;
    
    height: 250px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 0;
    margin-right: 20px;
    position: relative;
}


.hotel-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 5px;
}

.hotel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.hotel-item-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a73e8;
    
    margin: 0;
    line-height: 1.2;
}

.hotel-stars-inline {
    font-size: 0.9rem;
    color: #fbbc04;
    margin-left: 8px;
}

.hotel-body-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.hotel-body-left {
    flex: 1;
}

.hotel-body-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    
    align-items: flex-end;
    min-width: 150px;
}

.hotel-location-row {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #5f6368;
}

.hotel-description-preview {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #3c4043;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}


.btn-show-prices {
    background-color: #1a73e8;
    color: white;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 4px;
    
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-show-prices:hover {
    background-color: #1557b0;
    color: white;
}


.hotel-google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
}

.rating-text {
    display: flex;
    flex-direction: column;
}

.rating-label {
    font-weight: 600;
    color: #202124;
    font-size: 0.9rem;
}

.rating-badge {
    background: #003580;
    color: white;
    font-weight: 700;
    padding: 6px 8px;
    border-radius: 6px 6px 6px 0;
    
    border-radius: 4px;
    font-size: 1rem;
}


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

.view-grid .hotel-item {
    display: flex;
    flex-direction: column;
    padding: 0;
    border: 1px solid #ddd;
    overflow: hidden;
}

.view-grid .hotel-item-image {
    width: 100%;
    height: 200px;
    margin: 0;
    border-radius: 0;
}

.view-grid .hotel-item-content {
    padding: 15px;
}


.view-grid .hotel-body-row {
    flex-direction: column;
    gap: 10px;
}

.view-grid .hotel-body-right {
    align-items: stretch;
    
    margin-top: auto;
}



@media (min-width: 992px) {
    .city-page-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .view-controls {
        flex-direction: row;
        align-items: center;
    }

    .sort-trigger {
        width: auto;
    }
}

@media (max-width: 768px) {
    .city-page-header {
        margin-bottom: 1.5rem;
    }

    .city-page-titles h1 {
        font-size: 1.8rem;
    }

    .city-page-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .view-switcher {
        display: none !important;
    }

    .view-list,
    .view-grid {
        grid-template-columns: 1fr;
    }

    .view-list .hotel-item {
        flex-direction: column;
        padding: 0;
        
    }

    .view-list .hotel-item-image {
        width: 100%;
        height: 200px;
        margin: 0;
        border-radius: 0;
    }

    .view-list .hotel-item-content {
        padding: 15px;
        
        width: 100%;
        
    }
}

.city-search-mobile-wrapper {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}


.btn-view-map-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    background-color: var(--color-surface);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.btn-view-map-mobile:hover {
    background-color: var(--color-primary);
    color: var(--color-surface);
}


.map-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-view-modal.show {
    opacity: 1;
}

.map-modal-content {
    position: relative;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
    background-color: var(--color-background);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.map-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.2s;
}

.map-modal-close:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.interactive-map-container {
    width: 100%;
    height: 100%;
}


.map-hotel-info-card {
    position: absolute;
    z-index: 5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


.map-hotel-info-card {
    top: 2rem;
    left: 2rem;
    width: 380px;
    opacity: 0;
    
}


.map-hotel-info-card.show {
    opacity: 1;
    
    transition: opacity 0.3s ease;
}


.obfuscated-link {
    cursor: pointer;
}

@media (max-width: 768px) {
    .map-modal-content {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
    }

    .map-hotel-info-card {
        top: auto;
        left: 1rem;
        bottom: 1rem;
        right: 1rem;
        width: auto;
    }
}




.map-hotel-info-card .hotel-item {
    display: flex;
    flex-direction: column;
}

.map-hotel-info-card .hotel-item-image {
    height: 220px;
}

.map-hotel-info-card .hotel-item-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.map-hotel-info-card .hotel-item-rate-info {
    flex-direction: column;
    align-items: stretch;
}

.map-hotel-info-card .rate-price {
    text-align: right;
}


@media (max-width: 768px) {
    .map-hotel-info-card .hotel-item {
        flex-direction: row;
        align-items: stretch;
    }

    .map-hotel-info-card .hotel-item-image {
        width: 120px;
        height: auto;
        flex-shrink: 0;
    }

    .map-hotel-info-card .hotel-item-details {
        padding: 1rem;
    }

    .map-hotel-info-card .hotel-item-rate-info {
        flex-direction: row;
    }

    .map-hotel-info-card .rate-price {
        text-align: right;
    }

    
    .map-hotel-info-card .hotel-item-services {
        display: none;
    }
}


.custom-marker.selected .price-tag {
    animation: pulse 1.5s infinite alternate;
}

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

    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.search-box-wrapper-mobile {
    margin-top: 1.5rem;
    width: 100%;
}




.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    margin: 20px 0;
    color: var(--color-text-muted);
}

.breadcrumb a {
    color: var(--color-text);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb-separator {
    margin: 0 8px;
    font-size: 0.8em;
    color: #aeaeae;
}

.breadcrumb-current {
    font-weight: bold;
    color: var(--color-text);
}



.city-page-header-full {
    margin-bottom: 30px;
}

.city-page-header-full h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.city-page-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}


.city-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.filters-column {
    width: 28%;
    
    flex-shrink: 0;
}

.content-column {
    flex-grow: 1;
    min-width: 0;
    
}

@media (max-width: 991px) {
    .city-layout {
        flex-direction: column;
    }

    .filters-column {
        display: none;
        
    }

    .content-column {
        width: 100%;
    }
}


.sidebar-map-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 0;
    
    margin-bottom: 20px;
    position: relative;
    
    
    overflow: hidden;
    height: 180px;
    
}

.sidebar-map-container {
    width: 100%;
    height: 100%;
}

.sidebar-filters {
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    padding: 12px;
}


.filter-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

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

.filter-group h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}


.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    justify-content: space-between;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid var(--color-text-muted);
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--color-primary);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-count {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.used-filter-tag {
    background-color: #eef3ff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
}

.used-filter-tag .checkbox-container {
    margin-bottom: 0;
    font-size: 0.9rem;
}


.results-header h2 {
    font-size: 1.4rem;
    margin: 0;
}

.results-count-title {
    font-size: 1.5rem;
    font-weight: 400;
}




.hotel-item {
    transition: box-shadow 0.3s;
    overflow: hidden;
    
}

.hotel-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.hotel-item-image-container {
    position: relative;
    
}


.hotel-item-image {
    position: relative;
    
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 5;
    transition: transform 0.2s;
}

.wishlist-icon:hover {
    transform: scale(1.1);
}

.wishlist-icon.active i {
    color: #cc0000 !important;
    font-weight: 900;
}

.wishlist-icon i {
    color: var(--color-primary);
    
    transition: color 0.3s;
}


.wishlist-icon i {
    color: #cc0000;
}


.hotel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    margin-bottom: 5px;
    gap: 15px;
}

.hotel-item-name {
    flex-grow: 1;
    min-width: 0;
    margin: 0;
    font-size: 1.3rem;
    color: var(--color-primary);
}

.hotel-stars-inline {
    margin-left: 8px;
    color: var(--color-secondary);
    font-size: 0.9em;
}


.hotel-google-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: right;
    margin-left: 0;
    
    flex-shrink: 0;
}

.rating-text {
    line-height: 1.2;
}

.rating-label {
    display: block;
    font-weight: bold;
    color: var(--color-text);
}

.rating-count {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.rating-badge {
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
    padding: 8px;
    border-radius: 8px 8px 8px 0;
    font-size: 1.1rem;
    min-width: 40px;
    text-align: center;
}


.hotel-location-row {
    font-size: 0.9rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.show-map-link-inline {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    padding: 0;
}


.hotel-description-preview {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.5;
    margin-bottom: auto;
    display: -webkit-box;
    display: box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.hotel-actions-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.btn-show-prices {
    background-color: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-show-prices:hover {
    background-color: var(--color-primary-hover);
    color: #fff;
}


.btn-sidebar-map-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a73e8;
    
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
    font-size: 0.95rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-sidebar-map-overlay:hover {
    background: #1557b0;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}




.view-grid .hotel-google-rating {
    margin-top: 0;
    width: auto;
    justify-content: flex-end;
    flex-shrink: 0;
}

.view-grid .hotel-header-row {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.view-grid .hotel-item-name {
    width: 100%;
}


.gm-style-iw {
    padding: 0 !important;
    overflow: hidden !important;
}

.gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.custom-marker {
    background: white;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
}

.custom-marker:hover {
    background: var(--color-primary);
    color: white;
}

.custom-marker.selected {
    background: var(--color-primary);
    color: white;
    z-index: 100 !important;
}


.hotel-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 1.5rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    padding: 0;
    transition: background-color 0.2s;
    opacity: 0;
    
}

.hotel-item-image-container:hover .carousel-control {
    opacity: 1;
}

.carousel-control:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}


.carousel-bullets {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.carousel-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.carousel-bullet.active {
    background-color: white;
}

.mobile-bottom-actions {
    display: none;
    
}


.mobile-filter-header,
.mobile-filter-footer {
    display: none;
}

@media (max-width: 768px) {

    
    .desktop-only {
        display: none !important;
    }

    
    .mobile-only {
        display: block;
        
    }

    
    .mobile-bottom-actions {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--color-surface);
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
        z-index: 1000;
        padding: 0;
        width: 90%;
        max-width: 350px;
        overflow: hidden;
        border: 1px solid var(--color-border);
    }

    .btn-mobile-action {
        flex: 1;
        background: white;
        border: none;
        padding: 12px 15px;
        font-weight: 600;
        color: var(--color-text);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .btn-mobile-action:active {
        background-color: #f8f9fa;
    }

    .action-divider {
        width: 1px;
        background-color: #e9ecef;
    }

    
    .filters-column {
        display: none;
        
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
        z-index: 2000;
        padding: 0;
        overflow-y: auto;
        
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    .filters-column.open {
        display: block;
        
        transform: translateY(0);
    }

    
    
    .filters-column {
        display: flex !important;
        
        flex-direction: column;
        transform: translateY(100%);
        
        visibility: hidden;
    }

    .filters-column.open {
        transform: translateY(0);
        visibility: visible;
    }

    
    .mobile-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid var(--color-border);
        background: white;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-filter-header h3 {
        margin: 0;
        font-size: 1.2rem;
        color: var(--color-text);
    }

    .close-filters-btn {
        background: none;
        border: none;
        font-size: 2rem;
        line-height: 1;
        color: var(--color-text);
        cursor: pointer;
        padding: 0 10px;
    }

    
    .sidebar-filters {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        background: #f8f9fa;
    }

    .sidebar-filters .filter-group {
        background: white;
        padding: 15px;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .sidebar-filters .filter-group h3 {
        margin-top: 0;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    
    .mobile-filter-footer {
        display: block;
        padding: 15px 20px;
        border-top: 1px solid var(--color-border);
        background: white;
        position: sticky;
        bottom: 0;
    }

    .btn-apply-filters {
        background-color: var(--color-primary);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
    }
}
