.logo-header {
	width: 250px;
}
.logo-footer {
	width: 190px;
}
.break-word-title {
	word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal !important;
}
.pagination-disabled {
	color: #aaa !important;
    pointer-events: none;
    text-decoration: none;
    cursor: default;
}

.pagination-disabled i {
	color: #aaa !important;
    pointer-events: none;
    text-decoration: none;
    cursor: default;
    border: 1px solid #aaa !important;
}
.pagination-current {
	color: var(--color-neutral) !important;
    border-color: var(--color-neutral) !important;
}

.booking-form-adult-child {
    font-size: 1rem !important;
}

.booking-form-arrow-icons {
    color: var(--color-neutral) !important;
    margin-left: -2em;
}

.search-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* ✅ Always 4 per row */
    gap: 20px; /* Space between boxes */
}

/* ✅ Responsive: 2 per row on tablets */
@media (max-width: 768px) {
    .search-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ✅ Responsive: 1 per row on mobile */
@media (max-width: 480px) {
    .search-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

.box {
    flex: 1; /* Makes all boxes equal width */
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}