.boat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.boat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.boat-image {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.boat-card:hover .boat-image {
    transform: scale(1.05);
}

.card-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

footer {
    margin-top: 5rem;
}

/* Стили для пагинации */
.pagination {
    margin-bottom: 0;
}

.page-link {
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #dee2e6;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .boat-image {
        height: 200px;
    }
    
    .display-4 {
        font-size: 2.2rem;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .page-item {
        margin-bottom: 5px;
    }
}

.carousel-image {
    height: 500px;
    object-fit: cover;
}

.thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    transform: scale(1.05);
    border-color: #0d6efd !important;
    box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
}

.carousel-caption {
    max-width: 600px;
    margin: 0 auto;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .carousel-image {
        height: 300px;
    }
    
    .thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .carousel-caption {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
}




.card-header {
    background: linear-gradient(45deg, #0d6efd, #0dcaf0);
    color: white;
}
.highlight {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #0dcaf0;
}
.badge-service {
    font-size: 0.85rem;
    margin: 2px;
}
.main-title {
    color: #0d6efd;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 10px;
    margin-bottom: 20px;
}
body {
    background-color: #f8f9fa;
    padding-bottom: 30px;
}
.value-display {
    font-weight: 500;
    color: #0d6efd;
}
.header-row {
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin-bottom: 30px;
}
.date-picker-container {
    background: linear-gradient(to right, #0d6efd, #0dcaf0);
    border-radius: 10px;
    padding: 20px;
    color: white;
    margin-bottom: 30px;
}
.section-icon {
    margin-right: 8px;
}
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
}
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}
