/* ── ГЛАВНЫЙ CSS ФАЙЛ (static/css/base.css) ── */

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(145deg, #eaf4fc 0%, #d4e6f5 100%);
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

/* ════════════════════════════════════════════ */
/*   СТИЛИ ДЛЯ СТРАНИЦЫ ВХОДА                 */
/* ════════════════════════════════════════════ */

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    margin: 0;
}

.login-container {
    box-sizing: border-box;
    width: 440px;
    background: #ffffff;
    padding: 45px 40px 40px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 20, 40, 0.4);
    margin: 20px;
}

@media screen and (max-width: 480px) {
    .login-container {
        width: 100%;
        height: auto;
        min-height: 0;
        box-shadow: none;
        margin: 0;
        padding: 30px 24px;
        border-radius: 0;
        border-radius: 32px;
    }
}

.login-logo {
    text-align: center;
    margin-bottom: 32px;
}

.login-logo .logo-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 8px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.login-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b44;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.login-logo .logo-subtitle {
    font-size: 0.95rem;
    color: #4a7a95;
    font-weight: 400;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.login-btn {
    box-sizing: border-box;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: inherit;
    background: linear-gradient(135deg, #2a7faa 0%, #1a5f8a 100%);
    color: white;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px -8px rgba(42, 127, 170, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.login-btn:active {
    transform: scale(0.98);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(42, 127, 170, 0.5);
    background: linear-gradient(135deg, #1a6f9a 0%, #0f4f7a 100%);
}

.login-footer {
    box-sizing: border-box;
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px solid #e8f0f8;
    width: 100%;
}

.login-footer a {
    color: #2a7faa;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.login-footer a:hover {
    color: #0f4f7a;
    text-decoration: underline;
}

.login-footer a:active {
    color: #0f4f7a;
}

.error-message {
    box-sizing: border-box;
    background: #fef2f2;
    border: 2px solid #fecaca;
    border-radius: 14px;
    padding: 12px 16px;
    margin-bottom: 6px;
    color: #991b1b;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.error-message::before {
    content: "⚠️";
    font-size: 1.2rem;
    flex-shrink: 0;
}

.error-message p {
    margin: 0;
}


/* ════════════════════════════════════════════ */
/*   форма добавление рыбы в рыбалку             */
/* ════════════════════════════════════════════ */

.catch-form {
        background: #f6faff;
        border: 2px solid #e2edf8;
        border-radius: 20px;
        padding: 20px 24px;
        margin: 16px 0;
        transition: all 0.3s ease;
    }

    .catch-form:hover {
        border-color: #bed9f0;
        background: #f2f9ff;
    }

    .catch-form-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
    }

    .catch-form-title {
        font-weight: 600;
        color: #0b2b44;
        font-size: 1rem;
    }

    .catch-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 10px;
    }

    .catch-form .form-row-full {
        grid-column: 1 / -1;
    }

    .btn-logout img {
        width: 48px;
        height: 48px;
        cursor: pointer;
    }

    .btn-logout {
        background: none;
        border: none; /* убираем стандартную рамку */
        cursor: pointer;
    }



/* ════════════════════════════════════════════ */
/*   КНОПКИ ДЛЯ КАРТОЧЕК РЫБАЛОК              */
/* ════════════════════════════════════════════ */

.trip-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.btn-edit,
.btn-delete {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: transparent;
}

.btn-edit {
    color: #2a7faa;
    border-color: #d4e6f5;
    background: #f0f7fe;
}

.btn-edit:hover {
    background: #2a7faa;
    color: white;
    border-color: #2a7faa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 127, 170, 0.3);
}

.btn-delete {
    color: #991b1b;
    border-color: #fecaca;
    background: #fef2f2;
}

.btn-delete:hover {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ════════════════════════════════════════════ */
/*   ОБЩИЕ СТИЛИ ДЛЯ ФОРМ                      */
/* ════════════════════════════════════════════ */

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    margin-bottom: 0px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0b2b44;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label .field-icon {
    font-size: 1.1rem;
}

.form-group .form-control,
.form-group input,
.form-group select,
.form-group textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid #e2edf8;
    border-radius: 16px;
    background: #f8fcff;
    color: #0b2b44;
    transition: all 0.25s ease;
    outline: none;
}

.form-group .form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a7faa;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(42, 127, 170, 0.1);
}

.form-group .form-control::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ab5cc;
    font-weight: 400;
}

.form-group textarea.form-control,
.form-group textarea {
    resize: vertical;
    min-height: 60px;
}

.form-group .help-text {
    font-size: 0.85rem;
    color: #6a8fa8;
    margin-top: 4px;
}

.form-group .form-control.error,
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #fecaca;
    background: #fef2f2;
}

.field-error {
    color: #991b1b;
    font-size: 0.85rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-error::before {
    content: "⚠️";
}

/* ════════════════════════════════════════════ */
/*   СООБЩЕНИЯ DJANGO                         */
/* ════════════════════════════════════════════ */

.messages {
    box-sizing: border-box;
    margin-bottom: 16px;
    width: 100%;
}

.message {
    box-sizing: border-box;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid;
    width: 100%;
}

.message.success {
    background: #f0fdf4;
    border-color: #86efac;
    color: #14532d;
}

.message.error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.message.info {
    background: #eff6ff;
    border-color: #93c5fd;
    color: #1e3a8a;
}

/* ════════════════════════════════════════════ */
/*   КНОПКИ (общие)                           */
/* ════════════════════════════════════════════ */

.btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #2a7faa 0%, #1a5f8a 100%);
    color: white;
    box-shadow: 0 8px 20px -8px rgba(42, 127, 170, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(42, 127, 170, 0.5);
    background: linear-gradient(135deg, #1a6f9a 0%, #0f4f7a 100%);
}

.btn-secondary {
    background: #f0f7fe;
    color: #0b2b44;
    border: 2px solid #e2edf8;
}

.btn-secondary:hover {
    background: #e4eff8;
    border-color: #bed9f0;
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    box-shadow: 0 8px 20px -8px rgba(220, 38, 38, 0.4);
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -8px rgba(220, 38, 38, 0.5);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.btn-add-catch {
    padding: 10px 20px;
    background: linear-gradient(135deg, #3f8f6b 0%, #2a7f5a 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(42, 127, 90, 0.3);
}

.btn-add-catch:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 127, 90, 0.4);
    background: linear-gradient(135deg, #2a7f5a 0%, #1a6f4a 100%);
}

.btn-remove-catch {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fecaca;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-remove-catch:hover {
    background: #fecaca;
    transform: translateY(-2px);
}

/* ════════════════════════════════════════════ */
/*   СТРАНИЦА СПИСКА РЫБАЛОК                  */
/* ════════════════════════════════════════════ */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0b2b44;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 6px solid #2a7faa;
}

/* Сетка карточек */
.fishing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Карточка рыбалки */
.fishing-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 24px 20px 28px;
    box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.35),
                0 8px 24px -6px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
}

.fishing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 50px -14px rgba(0, 30, 60, 0.45);
    border-color: rgba(70, 130, 200, 0.3);
}

/* Шапка карточки */
.fishing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    border-bottom: 2px solid #e8f0f8;
    padding-bottom: 12px;
}

.fishing-id {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2b44;
    background: #e8f0f8;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.fishing-user {
    font-size: 0.95rem;
    color: #2a7faa;
    font-weight: 600;
    background: #e8f4fe;
    padding: 4px 14px;
    border-radius: 30px;
}

/* Информация */
.fishing-info {
    margin: 8px 0 14px;
}

.fishing-date {
    font-size: 0.95rem;
    color: #1f3b4e;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.fishing-date::before {
    content: "📅";
    font-size: 1.1rem;
}

.fishing-place {
    font-size: 0.95rem;
    color: #1f3b4e;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fishing-place::before {
    content: "📍";
    font-size: 1.1rem;
}

/* Описание */
.fishing-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1f3b4e;
    background: #f6faff;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid #e2edf8;
    margin: 8px 0 16px;
    flex: 1;
    transition: background 0.2s;
}

.fishing-card:hover .fishing-description {
    background: #f2f9ff;
    border-color: #bed9f0;
}

/* Статистика улова */
.fishing-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f0f7fe 0%, #e4eff8 100%);
    padding: 10px 16px;
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid #d4e6f5;
}

.stats-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #0b2b44;
}

.stats-item strong {
    font-weight: 700;
    color: #1a5276;
}

.stats-total-weight {
    font-weight: 700;
    color: #1a7a4a;
    font-size: 1.1rem;
}

/* Уловы */
.catches-section {
    margin-top: 8px;
    border-top: 2px solid #e8f0f8;
    padding-top: 14px;
}

.catches-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0b2b44;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.catches-title::before {
    content: "🐟";
    font-size: 1.1rem;
}

.catch-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f8fcff;
    border-radius: 14px;
    margin-bottom: 6px;
    border: 1px solid #e8f0f8;
    transition: background 0.2s;
    cursor: pointer;
}

.catch-item:hover {
    background: #eef6fe;
}

.catch-fish {
    font-weight: 600;
    color: #0b2b44;
    min-width: 60px;
}

.catch-bait {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #2a5f7a;
}

.catch-bait img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #d4e6f5;
}

.catch-weight {
    font-weight: 600;
    color: #2a7faa;
    margin-left: auto;
    font-size: 0.9rem;
    background: #e8f4fe;
    padding: 2px 12px;
    border-radius: 30px;
}

.catch-time {
    font-size: 0.75rem;
    color: #6a8fa8;
    white-space: nowrap;
}

.no-catches {
    color: #8aabbf;
    font-style: italic;
    font-size: 0.9rem;
    padding: 6px 0;
}

.catches-count {
    font-size: 0.8rem;
    color: #6a8fa8;
    background: #e8f0f8;
    padding: 2px 12px;
    border-radius: 30px;
    margin-left: auto;
}

/* ════════════════════════════════════════════ */
/*   СТАТИСТИКА                               */
/* ════════════════════════════════════════════ */

.statistics-section {
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 20px 40px -12px rgba(0, 20, 40, 0.35);
}

.statistics-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b2b44;
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 6px solid #2a7faa;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 35px;
}

.stat-card {
    background: linear-gradient(145deg, #f0f7fe, #e4eff8);
    border-radius: 20px;
    padding: 20px 16px;
    text-align: center;
    border: 1px solid #d4e6f5;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0b2b44;
}

.stat-label {
    font-size: 0.85rem;
    color: #4a7a95;
    margin-top: 4px;
}

.stats-block {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e8f0f8;
}

.stats-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0b2b44;
    margin-bottom: 18px;
}

.fish-stats-grid,
.bait-stats-grid {
    display: grid;
    gap: 14px;
}

.fish-stat-item,
.bait-stat-item {
    background: #f6faff;
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid #e2edf8;
}

.fish-stat-name,
.bait-stat-name {
    font-weight: 600;
    color: #0b2b44;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.fish-stat-details,
.bait-stat-details {
    display: flex;
    gap: 18px;
    font-size: 0.9rem;
    color: #2a5f7a;
    flex-wrap: wrap;
}

.fish-percent {
    font-weight: 600;
    color: #2a7faa;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #e2edf8;
    border-radius: 10px;
    margin-top: 8px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #2a7faa, #4aa3d4);
    border-radius: 10px;
    transition: width 1s ease;
}

.achievements-grid,
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.achievement-item,
.place-item {
    background: #f6faff;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #e2edf8;
    display: flex;
    align-items: center;
    gap: 16px;
}

.achievement-icon {
    font-size: 2.2rem;
}

.achievement-title,
.place-name {
    font-weight: 600;
    color: #0b2b44;
    font-size: 1rem;
}

.achievement-desc,
.place-details {
    font-size: 0.85rem;
    color: #4a7a95;
    margin-top: 2px;
}

.place-details {
    display: flex;
    gap: 12px;
}

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
}

.month-item {
    background: #f6faff;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #e2edf8;
    text-align: center;
}

.month-name {
    font-weight: 600;
    color: #0b2b44;
    margin-bottom: 6px;
}

.month-details {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #4a7a95;
    flex-wrap: wrap;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.fact-item {
    background: #f6faff;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid #e2edf8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fact-label {
    color: #2a5f7a;
    font-size: 0.9rem;
}

.fact-value {
    font-weight: 600;
    color: #0b2b44;
    font-size: 0.95rem;
}

.login-logo .logo-icon img {
    font-size: 3.2rem;
    width: 60%;

}

/* ════════════════════════════════════════════ */
/*   АДАПТИВНОСТЬ                             */
/* ════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .fishing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-card {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .form-header {
        flex-direction: column;
        text-align: center;
    }

    .form-header .header-icon {
        font-size: 2.4rem;
    }

    .form-header h1 {
        font-size: 1.6rem;
    }

    .delete-btn-wrapper {
        margin-left: 0;
        width: 100%;
    }









    .btn-add-catch {
        justify-content: center;
    }

    .statistics-section {
        padding: 20px 16px;
    }

    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .achievements-grid,
    .places-grid {
        grid-template-columns: 1fr;
    }

    .monthly-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .facts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .fishing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 500px;
        margin: 0 auto;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .fishing-header {
        flex-wrap: wrap;
        gap: 8px;
    }

    .catch-item {
        flex-wrap: wrap;
    }

    .catch-weight {
        margin-left: 0;
    }

    .fishing-stats {
        flex-wrap: wrap;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .btn-delete::after {
        font-size: 1.1rem;
        content: "🗑️";
    }

    .btn-delete {
        font-size: 0;
    }

    .btn-edit::after {
        font-size: 1.1rem;
        content: "✏️";
    }

    .btn-edit {
       font-size: 0;
    }


    .form-header h1 {
        font-size: 1.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .container {
        padding: 10px;
    }

    .login-container {
        border-radius: 32px;
        padding: 20px 30px;
    }

    .login-logo .logo-icon {
        font-size: 3.2rem;

    }

    .login-logo .logo-icon img {
        font-size: 3.2rem;
        width: 60%;

    }





    .login-logo h1 {
        font-size: 1.5rem;
    }

    .login-logo {
        margin-bottom: 24px;
    }

    .login-btn {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .login-form {
        gap: 14px;
    }
}

@media (max-width: 400px) {
    .login-container {
        padding: 16px 30px;
    }

    .login-logo .logo-icon {
        font-size: 2.8rem;
    }

    .login-logo h1 {
        font-size: 1.3rem;
    }

    .form-group input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .monthly-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Цветовые акценты для карточек */
.fishing-card:nth-child(3n+1) .fishing-id {
    background: #d4e6f5;
    color: #0b2b44;
}

.fishing-card:nth-child(3n+2) .fishing-id {
    background: #f0e6d4;
    color: #5a3f2a;
}

.fishing-card:nth-child(3n+3) .fishing-id {
    background: #d4f0e6;
    color: #2a5f4a;
}