/* === Общие правки поверх Bootstrap === */

body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Карточки (курорты, поездки) */
.card-custom {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Формы */
.form-wrapper {
    max-width: 400px;
    margin: 40px auto;
}

.form-title {
    margin-bottom: 20px;
    text-align: center;
}

/* Кнопки */
.btn-primary {
    border-radius: 8px;
}

/* Изображения поездок */
.trip-image {
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Пагинация */
.list-pages ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.list-pages .page-num {
    display: inline-block;
}

.list-pages .page-num a,
.list-pages .page-num span {
    display: block;
    padding: 6px 12px;
    border-radius: 6px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
}

.list-pages .page-num.active span {
    background: #0d6efd;
    color: white;
    font-weight: bold;
}

.list-pages .page-num a:hover {
    background: #0b5ed7;
    color: white;
}

/* Сообщения messages */
.messages {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 14px;
}

.message.success {
    background: #d1e7dd;
    color: #0f5132;
}

.message.error {
    background: #f8d7da;
    color: #842029;
}

.message.warning {
    background: #fff3cd;
    color: #664d03;
}

.message.info {
    background: #cff4fc;
    color: #055160;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.35rem;
}