.main-topbar-row-dashboard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-bg, #fff);
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
    border-radius: 16px;
    padding: 18px 24px 14px 24px;
    margin: 32px 0 18px 0;
    font-family: 'Vazirmatn', Tahoma, sans-serif;
}

.main-title-dashboard {
    font-size: 1.18rem;
    font-weight: bold;
    color: var(--text-primary, #222);
    letter-spacing: 0.5px;
}

.see-cities-link-dashboard {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--main-blue-light, #e8f0fe);
    color: var(--main-blue, #2563eb);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 10px;
    padding: 7px 18px 7px 14px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    transition: background 0.2s, color 0.2s;
}

.see-cities-link-dashboard i {
    font-size: 1.1em;
}

.see-cities-link-dashboard:hover {
    background: var(--main-blue, #2563eb);
    color: #fff;
}

@media (max-width: 600px) {
    .main-topbar-row-dashboard {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start !important;
        padding: 12px 8px 10px 8px;
    }

    .main-title-dashboard {
        font-size: 1.02rem;
    }

    .see-cities-link-dashboard {
        font-size: 0.97rem;
        padding: 7px 12px 7px 10px;
    }
}

.slider-header-bar {
    margin: 0 0 10px 0;
}

.slider-title {
    margin: 0;
}

.see-all-hotels-btn {
    background: var(--main-blue-light, #e8f0fe);
    color: var(--main-blue, #2563eb);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    padding: 7px 18px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    margin-right: 8px;
    display: inline-block;
}

.see-all-hotels-btn:hover {
    background: var(--main-blue, #2563eb);
    color: #fff;
}

.custom-hotel-slider {
    width: 100%;
    margin: 0 auto 32px auto;
    position: relative;
    max-width: 1200px;
}

.slider-btn {
    background: var(--main-blue-light, #e8f0fe);
    color: var(--main-blue, #2563eb);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--main-blue, #2563eb);
    color: #fff;
}

.slider-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.slider-track:active {
    cursor: grabbing;
}

@media (min-width: 901px) {
    .slider-track {
        scrollbar-width: none;
        /* Firefox */
    }

    .slider-track::-webkit-scrollbar {
        display: none;
        /* Chrome/Safari */
    }
}

.slider-item {
    min-width: 25%;
    max-width: 25%;
    box-sizing: border-box;
    padding: 0 8px;
}

.hotel-card2 {
    display: flex;
    flex-direction: column;
    background: var(--card-bg, #fff);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
    overflow: hidden;
    min-height: 320px;
    height: 100%;
    text-align: right;
    text-decoration: none !important;
    border: 2px solid var(--main-blue-light, #e8f0fe);
    transition: border 0.2s;
}

.hotel-card2:hover {
    border: 2px solid var(--main-blue, #2563eb);
}

.hotel-card2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background: #f4f6fa;
}

.hotel-info2 {
    padding: 14px 10px 10px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hotel-info2 h3,
.hotel-info2 p {
    margin: 0 0 7px 0;
    font-size: 1rem;
    color: var(--text-primary, #222);
    text-decoration: none !important;
}

.hotel-info2 .price {
    color: var(--main-blue, #2563eb);
    font-weight: bold;
    font-size: 1.08rem;
    margin-bottom: 7px;
    text-decoration: none !important;
}

.hotel-info2 .btn {
    background: var(--main-blue, #2563eb);
    color: #fff;
    border-radius: 8px;
    padding: 7px 0;
    font-weight: bold;
    text-align: center;
    margin-top: 8px;
    text-decoration: none !important;
    transition: background 0.2s;
    display: block;
}

.hotel-info2 .btn:hover {
    background: #1d4ed8;
}

@media (max-width: 900px) {
    .slider-item {
        min-width: 50%;
        max-width: 50%;
    }

    .hotel-card2 img {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .slider-header-bar {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start !important;
    }

    .slider-item {
        min-width: 100%;
        max-width: 100%;
    }

    .hotel-card2 img {
        height: 170px;
    }

    .see-all-hotels-btn {
        width: 100%;
        text-align: center;
        margin: 0;
        margin-top: 8px;
    }
}

.blog-section-dashboard {
    background: var(--card-bg, #fff);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.07);
    padding: 18px 18px 10px 18px;
    margin: 32px 0 24px 0;
}

.blog-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.blog-title {
    font-size: 1.08rem;
    font-weight: bold;
    color: var(--main-blue, #2563eb);
    display: flex;
    align-items: center;
    gap: 7px;
}

.blog-see-all {
    background: var(--main-blue-light, #e8f0fe);
    color: var(--main-blue, #2563eb);
    font-weight: 600;
    font-size: 0.97rem;
    border-radius: 8px;
    padding: 5px 16px;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.blog-see-all:hover {
    background: var(--main-blue, #2563eb);
    color: #fff;
}

.blog-list-dashboard {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    flex-direction: row;
    justify-content: flex-start;
}

.blog-card-dashboard {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: var(--main-gray, #f4f6fa);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    text-decoration: none !important;
    color: var(--text-primary, #222);
    min-height: 110px;
    max-width: 48%;
    width: 48%;
    margin: 0 0 0 0;
    border: 1.5px solid var(--main-blue-light, #e8f0fe);
    transition: box-shadow 0.2s, border 0.2s;
}

.blog-card-dashboard:hover {
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.13);
    border: 1.5px solid var(--main-blue, #2563eb);
}

.blog-card-dashboard img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    margin: 12px;
    background: #e8e8e8;
    flex-shrink: 0;
}

.blog-info-dashboard {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 0 10px 10px;
    flex: 1;
    min-width: 0;
    color: #222 !important;
}

.blog-card-title, .blog-card-desc {
    color: #222 !important;
}

.blog-card-title {
    font-size: 1.01rem;
    font-weight: bold;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-desc {
    font-size: 0.97rem;
    line-height: 1.7;
    max-height: 3.2em;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 900px) {
    .blog-list-dashboard {
        gap: 12px;
    }
    .blog-card-dashboard {
        max-width: 100%;
        min-width: 0;
        flex-direction: row;
        min-height: 90px;
        width: 100%;
    }
    .blog-card-dashboard img {
        width: 70px;
        height: 70px;
        margin: 10px;
    }
    .blog-info-dashboard {
        padding: 8px 0 8px 8px;
    }
}

@media (max-width: 600px) {
    .blog-list-dashboard {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-card-dashboard {
        flex-direction: row;
        min-height: 70px;
        max-width: 100%;
        width: 100%;
    }
    .blog-card-dashboard img {
        width: 56px;
        height: 56px;
        margin: 7px;
    }
    .blog-info-dashboard {
        padding: 6px 0 6px 6px;
    }
    .blog-card-title {
        font-size: 0.97rem;
    }
    .blog-card-desc {
        font-size: 0.93rem;
    }
}                                    