.slider-container {
    display: flex;
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    overflow: hidden;
    padding: 4px;
    border-radius: 5px;
}
.thumbnails {
    width: 20%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    background-color: #f2f2f2;
    border-right: 1px solid #ccc;
    gap: 10px;
    position: relative;
}
.thumbnails-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease;
}
.thumbnail {
    width: 95%;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.thumbnail img {
    width: 100%;
}
.main-image {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
}
.main-image img {
    max-width: 100%;
    max-height: 100%;
    border: 1px solid #ccc;
    transition: opacity 0.5s ease-in-out;
}
.buttons {
    display: flex;
    gap: 10px;
    margin: 10px;
}
.button {
    padding: 4px 2px 0px 3px;
    background-color: #e0e0e0c4;
    color: #fff;
    border: 1px solid #cbcbcb;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button:focus {
background-color: #e0e0e0c4;
}
.button .elementor-icon {
    font-size: 25px;
}
.button .elementor-icon svg {
    fill: #8cadae;
}
.button:hover {
    background-color: #e0e0e0c4;
}
.cafe-navigation-widget {
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cafe-navigation-widget .dashicons {
    font-size: 24px;
    color: #0073aa;
    margin-right: 8px;
}
.cafe-navigation-widget:hover .dashicons {
    color: #005177;
}
