.button-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 15px;
    margin-bottom: 10px;
}

.button {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 15px;
    background-color: #007bff;
    color: #ffffff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.button:last-child {
    margin-right: 0;
}

.button:hover {
  color: #007bff;
}

.thumbnail-wrapper {
    position: relative;
}

.tour-badges-wrapper {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    z-index: 10;
}

.tour-duration-badge,
.tour-format-badge {
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tour-duration-badge {
    background: #ff7e5f;
    margin-top: 5px;
    margin-left: 5px;
}

.tour-format-badge {
    background: #6c63ff;
    margin-left: 5px;
}