﻿.panel-link-section {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.panel-link-booking {
    display: flex;
    gap: 20px;
    background-color: #F4F4F4;
    align-items:center;
    padding: 10px 20px;
    border-radius: 5px;
}

    .panel-link-booking span {
        display: inline-block;
        width: 470px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
    }

.panel-booking-section {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
}

.panel-booking-title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}


.horizontal-scroll-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}


.panel-bookings-section {
    display: flex;
    gap: 20px;
    overflow-x: hidden; 
    scroll-behavior: smooth;
    width: 100%;
    margin-top: 15px;
}

.panel-booking {
    background-color: #F4F4F4;
    padding: 20px 20px 20px 35px;
    min-width: 350px;
    max-width: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
    border-radius: 5px;
}

    .panel-booking span {
        white-space: nowrap;
        /*overflow: hidden;
        text-overflow: ellipsis;*/
        display: block;
        width: 100%;
        min-width: 0;
    }

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.panel-links-uteis {
    min-width: 350px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.panel-links-uteis-card {
    background-color: #F4F4F4;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 5px;
    font-size: 18px;
}

.panel-links-uteis-heard {
    display: flex;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
}



@media (max-width: 1024px) {
    .panel-link-section {
        flex-direction: column;
    }

    .panel-links-uteis {
        min-width: auto;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .panel-link-booking span {
        width: 100%;
    }

    .arrow {
        top: 27%;
    }

    .arrow-left {
        left: auto;
        right: 0;
        margin-top: 40px;
    }
}