/* ========================================
   ÚČET CHOVATELE - ODCHOVY
   Sloučený CSS soubor pro stránku ucet-chovatele-odchovy.php
   Obsahuje: muj-ucet + ucet-chovatele + odchovy + ucet-chovatele-odchovy
   ======================================== */

/* ── MŮJ ÚČET (základní dashboard styly) ── */

/* ========================================
   DASHBOARD - MUJ UCET - BEM METODIKA
   MOBILE FIRST PRISTUP
   ======================================== */

/* ========================================
   BODY MODIFIKATOR PRO DASHBOARD
   ======================================== */

.body--dashboard {
    background-color: #f8f9fa;
}

.body--dashboard .footer {
    display: none;
}

/* ========================================
   DASHBOARD LAYOUT
   Zakladni layout pro mobil - sloupec
   ======================================== */

.dashboard {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    width: 100%;
    padding-top: 60px; /* Kompenzace fixed hlavičky */
}

/* ========================================
   MOBILNI HEADER - VIDITELNY NA MOBILU
   ======================================== */

.dashboard__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.dashboard__mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.dashboard__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ede9fe;
    border-radius: 8px;
    cursor: pointer;
    color: #7c3aed;
    transition: all 0.2s ease;
}

.dashboard__menu-toggle:hover {
    background-color: #ddd6fe;
}

.dashboard__menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   OVERLAY - TMAVE POZADI PRI OTEVRENEM MENU
   ======================================== */

.dashboard__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dashboard__overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   SIDEBAR - SKRYTE NA MOBILU, VYSOUVACI
   Cisty bily design inspirovany Saanvi
   ======================================== */

.dashboard__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 110;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
}

.dashboard__sidebar--open {
    transform: translateX(0);
}

/* Header sidebaru - cisty */
.dashboard__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.dashboard__sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

.dashboard__sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    border-radius: 12px;
    color: #64748b;
    transition: all 0.2s ease;
}

.dashboard__sidebar-close:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.dashboard__sidebar-close svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   NAVIGACE V SIDEBARU - CISTY BILY STYL
   ======================================== */

.dashboard__nav {
    flex: 1;
    padding: 16px 12px;
    position: relative;
    z-index: 5;
}

.dashboard__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard__nav-item {
    margin-bottom: 4px;
}

.dashboard__nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dashboard__nav-link:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.dashboard__nav-link--active {
    background-color: #f1f5f9;
    color: #667eea;
}

/* Ikony v navigaci */
.dashboard__nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #94a3b8;
}

.dashboard__nav-link:hover .dashboard__nav-icon {
    color: #64748b;
}

.dashboard__nav-link--active .dashboard__nav-icon {
    color: #667eea;
}

/* Badge - cervena pro notifikace */
.dashboard__nav-badge {
    margin-left: auto;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Počet položek v navigaci */
.dashboard__nav-count {
    margin-left: auto;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.dashboard__nav-link--active .dashboard__nav-count {
    background-color: #e0e7ff;
    color: #667eea;
}

/* Kategorie v navigaci */
.dashboard__nav-category {
    padding: 24px 16px 10px;
    border-top: 1px solid #f1f5f9;
    margin-top: 12px;
}

.dashboard__nav-category-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

/* ========================================
   CTA BOX V SIDEBARU - CISTY SVETLY STYL
   ======================================== */

.dashboard__cta {
    margin: 24px 12px 20px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Dekorativní prvky na pozadí */
.dashboard__cta::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 50%;
}

.dashboard__cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 50%;
}

.dashboard__cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.dashboard__cta-icon svg {
    width: 28px;
    height: 28px;
}

.dashboard__cta-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    position: relative;
    z-index: 1;
}

.dashboard__cta-text {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.dashboard__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.dashboard__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.dashboard__cta-button svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   HLAVNI OBSAH - MOBILNI STYLY
   ======================================== */

.dashboard__main {
    flex: 1;
    padding: 16px;
    background-color: #f8f9fa;
}

/* ========================================
   UVITANI
   ======================================== */

.dashboard__welcome {
    margin-bottom: 20px;
}

.dashboard__welcome-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.dashboard__welcome-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ========================================
   HLAVICKA STRANKY OBLIBENYCH
   ======================================== */

.dashboard__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.dashboard__back-link:hover {
    color: #7c3aed;
}

.dashboard__back-link svg {
    width: 16px;
    height: 16px;
}

.dashboard__page-header {
    margin-bottom: 20px;
}

.dashboard__page-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.dashboard__page-count {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ========================================
   FILTRY A RAZENI
   ======================================== */

.dashboard__filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard__filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dashboard__filter-tabs::-webkit-scrollbar {
    display: none;
}

.dashboard__filter-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    background-color: #f3f4f6;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.dashboard__filter-tab:hover {
    background-color: #ede9fe;
    color: #7c3aed;
}

.dashboard__filter-tab--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.dashboard__filter-tab--active:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.dashboard__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard__sort-label {
    font-size: 13px;
    color: #6b7280;
}

.dashboard__sort-select {
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    transition: all 0.2s ease;
}

.dashboard__sort-select:hover {
    border-color: #c4b5fd;
}

.dashboard__sort-select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* ========================================
   PRAZDNY STAV
   ======================================== */

.dashboard__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.dashboard__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.dashboard__empty-icon svg {
    width: 100%;
    height: 100%;
}

.dashboard__empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.dashboard__empty-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    max-width: 280px;
}

.dashboard__empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dashboard__empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* ========================================
   FULL GRID - PRO STRANKU OBLIBENYCH
   ======================================== */

.dashboard__favorites-grid--full {
    grid-template-columns: repeat(2, 1fr);
}

/* ========================================
   ALERT - UPOZORNENI
   ======================================== */

.dashboard__alert {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard__alert-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #667eea;
}

.dashboard__alert-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-left: 8px;
}

.dashboard__alert-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0ff;
    border-radius: 12px;
    color: #667eea;
}

.dashboard__alert-icon svg {
    width: 22px;
    height: 22px;
}

.dashboard__alert-text {
    min-width: 0;
    flex: 1;
}

.dashboard__alert-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.dashboard__alert-meta {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.dashboard__alert-action {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #667eea;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dashboard__alert-action:hover {
    background-color: #5a67d8;
}

/* ========================================
   SEKCE
   ======================================== */

.dashboard__section {
    margin-bottom: 24px;
}

.dashboard__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.dashboard__section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.2px;
}

.dashboard__section-link {
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    padding: 6px 12px;
    background-color: #f0f0ff;
    border-radius: 6px;
}

.dashboard__section-link:hover {
    background-color: #667eea;
    color: #ffffff;
}

/* ========================================
   GRID PRO OBLIBENE - MOBILE FIRST
   Pouziva originalni karty puppy-card a card--grid
   ======================================== */

.dashboard__favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Karta pro pridani dalsich */
.dashboard__card-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dashboard__card-add:hover {
    border-color: #a78bfa;
    background-color: #f5f3ff;
}

.dashboard__card-add-icon {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.dashboard__card-add:hover .dashboard__card-add-icon {
    color: #7c3aed;
}

.dashboard__card-add-text {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.2s ease;
}

.dashboard__card-add:hover .dashboard__card-add-text {
    color: #7c3aed;
}

/* ========================================
   PUPPY CARD - KARTA STENETE
   Mobile First - Saanvi styl
   ======================================== */

.puppy-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    border: 1px solid #f1f5f9;
}

.puppy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.puppy-card__image {
    display: block;
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f8fafc;
}

.puppy-card__badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.puppy-card__badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.puppy-card__badge--status {
    background-color: #667eea;
    color: #ffffff;
}

.puppy-card__badge--nadeje {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.puppy-card__badge--mazlicek {
    background-color: #10b981;
}

.puppy-card__badge--available {
    background-color: #10b981;
    color: #ffffff;
}

.puppy-card__badge--reserved {
    background-color: #f59e0b;
    color: #ffffff;
}

.puppy-card__badge--champion {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

/* Srdíčko - oblíbené */
.puppy-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.puppy-card__favorite:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.puppy-card__favorite svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.puppy-card__favorite:hover svg {
    color: #ef4444;
}

.puppy-card__favorite--active svg {
    color: #ef4444;
    fill: #ef4444;
}

/* Obsah karty */
.puppy-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.puppy-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.puppy-card__gender {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.puppy-card__gender svg {
    width: 100%;
    height: 100%;
}

.puppy-card__gender--male {
    color: #3b82f6;
}

.puppy-card__gender--female {
    color: #ec4899;
}

.puppy-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__breed {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__breed-name {
    color: #667eea;
}

.puppy-card__separator {
    margin: 0 4px;
    color: #d1d5db;
}

.puppy-card__variety {
    color: #9ca3af;
}

/* Povahový punc */
.puppy-card__temperament {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 6px;
    width: fit-content;
}

.puppy-card__temperament-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

img.puppy-card__temperament-icon {
    width: 12px;
    height: 12px;
}

.puppy-card__temperament-text {
    font-weight: 500;
}

/* Průzkumník - oranžová */
.puppy-card__temperament--pruzkumnik {
    background-color: #fff7ed;
    color: #ea580c;
    cursor: help;
}

.puppy-card__temperament--pruzkumnik img {
    filter: invert(39%) sepia(95%) saturate(1500%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

/* Mazel - růžová */
.puppy-card__temperament--mazel {
    background-color: #fdf2f8;
    color: #db2777;
    cursor: help;
}

.puppy-card__temperament--mazel img {
    filter: invert(25%) sepia(90%) saturate(2000%) hue-rotate(315deg) brightness(90%) contrast(95%);
}

/* Pohodář - modrá */
.puppy-card__temperament--pohodar {
    background-color: #eff6ff;
    color: #2563eb;
    cursor: help;
}

.puppy-card__temperament--pohodar svg {
    color: #2563eb;
}

/* Snaživec - zelená */
.puppy-card__temperament--snazivec {
    background-color: #ecfdf5;
    color: #059669;
    cursor: help;
}

.puppy-card__temperament--snazivec img {
    filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(120deg) brightness(90%) contrast(95%);
}

/* Pozorovatel - fialová */
.puppy-card__temperament--pozorovatel {
    background-color: #f5f3ff;
    color: #7c3aed;
    cursor: help;
}

.puppy-card__temperament--pozorovatel img {
    filter: invert(35%) sepia(80%) saturate(2000%) hue-rotate(245deg) brightness(90%) contrast(95%);
}

.puppy-card__details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.puppy-card__cake-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: invert(45%) sepia(70%) saturate(1500%) hue-rotate(210deg) brightness(90%) contrast(90%);
}

.puppy-card__age {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    background-color: #f8fafc;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.puppy-card__birthdate {
    color: #2c3e50;
    font-weight: 500;
}

.puppy-card__age-separator {
    color: #bdc3c7;
    font-size: 8px;
}

.puppy-card__age-value {
    color: #7f8c8d;
}

.puppy-card__station {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.puppy-card__station-icon {
    width: 14px;
    height: 14px;
    color: #667eea;
    flex-shrink: 0;
}

.puppy-card__station-link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__station-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

.puppy-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.puppy-card__flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.puppy-card__country {
    font-weight: 500;
    color: #1e293b;
}

.puppy-card__place {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #94a3b8;
}

.puppy-card__place::before {
    content: "•";
    margin-right: 6px;
    color: #cbd5e1;
}

/* Tituly chovného jedince */
.puppy-card__titles {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.puppy-card__title-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 600;
    color: #92400e;
    background-color: #fef3c7;
    border-radius: 4px;
}

/* ========================================
   SKUPINA PODLE DATA PRIDANI
   ======================================== */

/* Label s datem nad první kartou skupiny */
.favorites-card-wrapper {
    position: relative;
    padding-top: 28px;
}

.favorites-card-wrapper__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
}

/* Override pro breeding-dog-card v dashboard gridu */
.dashboard__favorites-grid .breeding-dog-card {
    width: 100%;
    flex: none;
}

.puppy-card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #667eea;
    background: #f0f0ff;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.puppy-card__button:hover {
    background: #667eea;
    color: #ffffff;
}

/* ========================================
   CARD--GRID - KARTA STANICE
   Mobile First - Saanvi styl
   ======================================== */

.card--grid {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    border: 1px solid #f1f5f9;
}

.card--grid:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card--grid .card__image {
    display: block;
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f8fafc;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    gap: 6px;
}

.card--grid .card__badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.card--grid .card__badge--puppies {
    background-color: #10b981;
    color: #ffffff;
}

.card--grid .card__badge--expected {
    background-color: #f59e0b;
    color: #ffffff;
}

.card--grid .card__badge--new {
    background-color: #ff6b6b;
    color: #ffffff;
}

.card--grid .card__badge--updated {
    background-color: #3498db;
    color: #ffffff;
}

/* Srdíčko */
.card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card__favorite:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.card__favorite svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.card__favorite:hover svg {
    color: #ef4444;
}

.card__favorite--active svg {
    color: #ef4444;
    fill: #ef4444;
}

/* Obsah karty stanice */
.card--grid .card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card--grid .card__header {
    margin-bottom: 6px;
}

.card--grid .card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card--grid .card__rating {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.card--grid .card__breed {
    font-size: 13px;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.card--grid .card__breed .breed-item {
    display: block;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.card--grid .card__breed .breed-item::before {
    content: '•';
    margin-right: 8px;
    color: #667eea;
}

.card--grid .card__breed .breed-item:hover {
    color: #5568d3;
    text-decoration: underline;
}

.card--grid .card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.card--grid .card__flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.card--grid .card__country {
    font-weight: 500;
    color: #1e293b;
}

.card--grid .card__place {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #94a3b8;
}

.card--grid .card__place::before {
    content: "•";
    margin-right: 6px;
    color: #cbd5e1;
}

.card--grid .card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #667eea;
    background: #f0f0ff;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.card--grid .card__button:hover {
    background: #667eea;
    color: #ffffff;
}

/* ========================================
   RYCHLE AKCE - MOBILNI STYLY (SLOUPEC)
   ======================================== */

.dashboard__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard__action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard__action:hover {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dashboard__action-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0ff;
    border-radius: 12px;
    color: #667eea;
}

.dashboard__action-icon svg {
    width: 22px;
    height: 22px;
}

.dashboard__action-text {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.dashboard__action:hover .dashboard__action-text {
    color: #667eea;
}

/* ========================================
   TABLET (768px+) - MEDIA QUERY
   ======================================== */

@media (min-width: 768px) {
    .dashboard__main {
        padding: 28px 32px;
    }

    .dashboard__welcome {
        margin-bottom: 24px;
    }

    .dashboard__welcome-title {
        font-size: 24px;
    }

    .dashboard__welcome-text {
        font-size: 14px;
    }

    .dashboard__section {
        margin-bottom: 28px;
    }

    .dashboard__section-header {
        margin-bottom: 16px;
    }

    .dashboard__section-title {
        font-size: 18px;
    }

    .dashboard__section-link {
        font-size: 13px;
        padding: 8px 14px;
    }

    .dashboard__page-title {
        font-size: 24px;
    }

    /* Filtry v radku */
    .dashboard__filters {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Prázdný stav */
    .dashboard__empty {
        padding: 64px 32px;
    }

    .dashboard__empty-icon {
        width: 80px;
        height: 80px;
    }

    .dashboard__empty-title {
        font-size: 20px;
    }

    .dashboard__empty-text {
        font-size: 15px;
        max-width: 360px;
    }

    /* Alert v radku */
    .dashboard__alert {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
    }

    .dashboard__alert-content {
        flex: 1;
    }

    .dashboard__alert-action {
        width: auto;
        flex-shrink: 0;
    }

    /* 3 karty vedle sebe */
    .dashboard__favorites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Vetsi vyska obrazku */
    .puppy-card__image,
    .card--grid .card__image {
        height: 160px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 18px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 16px;
    }

    .puppy-card__breed,
    .card--grid .card__breed {
        font-size: 14px;
    }

    .puppy-card__button,
    .card--grid .card__button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .puppy-card__location,
    .card--grid .card__location {
        font-size: 13px;
    }

    .puppy-card__flag,
    .card--grid .card__flag {
        width: 20px;
        height: 15px;
    }

    .puppy-card__age {
        font-size: 13px;
    }

    .puppy-card__cake-icon {
        width: 17px;
        height: 17px;
    }

    .puppy-card__station-icon {
        width: 15px;
        height: 15px;
    }

    .puppy-card__station-link {
        font-size: 14px;
    }

    .dashboard__card-add {
        min-height: 340px;
    }

    /* Rychle akce v radku */
    .dashboard__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dashboard__action {
        flex: 1;
        min-width: 200px;
    }
}

/* ========================================
   DESKTOP (1024px+) - SIDEBAR VIDITELNY
   ======================================== */

@media (min-width: 1024px) {
    /* Skryt mobilni prvky */
    .dashboard__mobile-header {
        display: none;
    }

    .dashboard__overlay {
        display: none;
    }

    /* Layout zmena na radek */
    .dashboard {
        flex-direction: row;
    }

    /* Sidebar - vzdy viditelny, cisty bily design */
    .dashboard__sidebar {
        position: static;
        top: auto;
        left: auto;
        width: 280px;
        height: auto;
        transform: none;
        border-right: 1px solid #f1f5f9;
        flex-shrink: 0;
        overflow-y: visible;
        box-shadow: none;
    }

    .dashboard__sidebar-close {
        display: none;
    }

    /* Navigace nema roztahovat prostor */
    .dashboard__nav {
        flex: none;
    }

    .dashboard__nav-link {
        padding: 14px 18px;
    }

    .dashboard__nav-icon {
        width: 22px;
        height: 22px;
    }

    /* Hlavni obsah */
    .dashboard__main {
        flex: 1;
        padding: 44px 56px;
        min-width: 0;
    }

    .dashboard__welcome-title {
        font-size: 32px;
    }

    .dashboard__section-title {
        font-size: 24px;
    }

    .dashboard__section-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .dashboard__favorites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Desktop velikosti */
    .puppy-card__image,
    .card--grid .card__image {
        height: 180px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 20px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 17px;
    }

    .puppy-card__breed,
    .card--grid .card__breed {
        font-size: 14px;
    }

    .puppy-card__location,
    .card--grid .card__location {
        font-size: 14px;
    }

    .puppy-card__flag,
    .card--grid .card__flag {
        width: 20px;
        height: 15px;
    }

    .puppy-card__age {
        font-size: 13px;
        padding: 6px 12px;
    }

    .puppy-card__cake-icon {
        width: 18px;
        height: 18px;
    }

    .puppy-card__station-icon {
        width: 16px;
        height: 16px;
    }

    .puppy-card__station-link {
        font-size: 14px;
    }

    .dashboard__card-add {
        min-height: 380px;
    }

    .dashboard__page-title {
        font-size: 30px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   VELKY DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    .dashboard__sidebar {
        width: 300px;
    }

    .dashboard__main {
        padding: 48px 72px;
    }

    .dashboard__nav-link {
        padding: 16px 22px;
        font-size: 15px;
    }

    .dashboard__welcome-title {
        font-size: 36px;
    }

    .dashboard__page-title {
        font-size: 36px;
    }

    /* 4 karty vedle sebe */
    .dashboard__favorites-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(4, 1fr);
    }

    .puppy-card__image,
    .card--grid .card__image {
        height: 200px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 20px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 17px;
    }

    .puppy-card__button,
    .card--grid .card__button {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ========================================
   MOJE RECENZE - MOBILE FIRST
   ======================================== */

/* Statistiky */
.my-reviews__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.my-reviews__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 100px;
}

.my-reviews__stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.my-reviews__stat-number--published {
    color: #10b981;
}

.my-reviews__stat-number--pending {
    color: #f59e0b;
}

.my-reviews__stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Seznam recenzí */
.my-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Karta recenze */
.my-review {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.my-review:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.my-review--pending {
    border-left: 4px solid #f59e0b;
}

/* Hlavička recenze */
.my-review__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.my-review__station-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.my-review__station-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.my-review__station-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.my-review__station-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.my-review__station-link:hover .my-review__station-name {
    color: #667eea;
}

.my-review__date {
    font-size: 12px;
    color: #9ca3af;
}

.my-review__header-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.my-review__rating {
    display: flex;
    gap: 2px;
}

.my-review__star {
    width: 16px;
    height: 16px;
}

.my-review__star--filled {
    fill: #f59e0b;
}

.my-review__star--empty {
    fill: #d1d5db;
}

.my-review__status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.my-review__status svg {
    width: 12px;
    height: 12px;
}

.my-review__status--pending {
    background-color: #fef3c7;
    color: #d97706;
}

/* Obsah recenze */
.my-review__content {
    margin-bottom: 12px;
}

.my-review__text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Odkaz na psa */
.my-review__dog {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
}

.my-review__dog-icon {
    width: 16px;
    height: 16px;
    fill: #667eea;
    flex-shrink: 0;
}

.my-review__dog-link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.my-review__dog-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Odpověď chovatele */
.my-review__reply {
    margin-top: 12px;
    padding: 12px;
    background-color: #f8f5ff;
    border-left: 3px solid #8b5cf6;
    border-radius: 0 8px 8px 0;
}

.my-review__reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.my-review__reply-label {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
}

.my-review__reply-date {
    font-size: 11px;
    color: #9ca3af;
}

.my-review__reply-text {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* Akce */
.my-review__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.my-review__action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    font-family: inherit;
}

.my-review__action svg {
    width: 14px;
    height: 14px;
}

.my-review__action--view {
    background-color: #f3f4f6;
    color: #4b5563;
}

.my-review__action--view:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.my-review__action--edit {
    background-color: #eff6ff;
    color: #3b82f6;
}

.my-review__action--edit:hover {
    background-color: #dbeafe;
    color: #2563eb;
}

.my-review__action--delete {
    background-color: #fef2f2;
    color: #ef4444;
}

.my-review__action--delete:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

/* ========================================
   MOJE RECENZE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .my-reviews__stats {
        gap: 16px;
    }

    .my-reviews__stat {
        padding: 20px 32px;
    }

    .my-reviews__stat-number {
        font-size: 32px;
    }

    .my-reviews__stat-label {
        font-size: 13px;
    }

    .my-review {
        padding: 20px;
    }

    .my-review__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .my-review__header-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .my-review__station-image {
        width: 56px;
        height: 56px;
    }

    .my-review__station-name {
        font-size: 16px;
    }

    .my-review__text {
        font-size: 15px;
    }

    .my-review__star {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   MOJE RECENZE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .my-reviews__stats {
        gap: 20px;
        margin-bottom: 32px;
    }

    .my-reviews__stat {
        padding: 24px 40px;
    }

    .my-reviews__stat-number {
        font-size: 36px;
    }

    .my-reviews__stat-label {
        font-size: 14px;
    }

    .my-reviews__list {
        gap: 20px;
    }

    .my-review {
        padding: 24px;
    }

    .my-review__station-image {
        width: 60px;
        height: 60px;
    }

    .my-review__station-name {
        font-size: 17px;
    }

    .my-review__date {
        font-size: 13px;
    }

    .my-review__text {
        font-size: 15px;
    }

    .my-review__reply {
        padding: 16px;
    }

    .my-review__reply-text {
        font-size: 14px;
    }

    .my-review__action {
        padding: 8px 14px;
        font-size: 13px;
    }

    .my-review__action svg {
        width: 15px;
        height: 15px;
    }
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - MOBILE FIRST
   ======================================== */

/* Meta řádek pod nadpisem */
.dashboard__page-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.dashboard__page-count {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

/* Tlačítko smazat vše - moderní styl */
.history__clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.history__clear-btn:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.history__clear-btn svg {
    width: 14px;
    height: 14px;
}

/* Filtry */
.history__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.history__filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.history__filter:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.history__filter--active {
    background-color: #667eea;
    color: #ffffff;
}

.history__filter--active:hover {
    background-color: #5a67d8;
    color: #ffffff;
}

.history__filter svg {
    width: 14px;
    height: 14px;
}

.history__filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.history__filter--active .history__filter-count {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Prázdný stav */
.history__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.history__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.history__empty-icon svg {
    width: 100%;
    height: 100%;
}

.history__empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 8px 0;
}

.history__empty-text {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Seznam historie */
.history__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Skupina podle data */
.history__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history__group-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.history__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Položka historie */
.history__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    overflow: hidden;
}

.history__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.history__item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

/* Obrázek */
.history__item-image {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.history__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history__item-type {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.history__item-type svg {
    width: 12px;
    height: 12px;
}

.history__item-type--station {
    color: #667eea;
}

.history__item-type--puppy {
    color: #f59e0b;
}

.history__item-type--breeding {
    color: #10b981;
}

/* Info */
.history__item-info {
    flex: 1;
    min-width: 0;
}

.history__item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.history__item:hover .history__item-name {
    color: #667eea;
}

.history__item-breed {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
}

.history__item-location,
.history__item-station {
    display: flex;
    align-items: center;
    gap: 4px;
}

.history__item-location svg {
    width: 12px;
    height: 12px;
}

.history__item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
}

.history__item-rating svg {
    width: 12px;
    height: 12px;
}

.history__item-age {
    color: #6b7280;
}

.history__item-titles {
    color: #10b981;
    font-weight: 500;
}

.history__item-gender {
    font-weight: 600;
}

.history__item-gender--male {
    color: #3b82f6;
}

.history__item-gender--female {
    color: #ec4899;
}

/* Pravá část */
.history__item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.history__item-time {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

.history__item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.history__item-remove:hover {
    background-color: #fef2f2;
    color: #ef4444;
}

.history__item-remove svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .history__filters {
        gap: 10px;
        margin-bottom: 28px;
    }

    .history__filter {
        padding: 10px 18px;
        font-size: 14px;
    }

    .history__filter svg {
        width: 16px;
        height: 16px;
    }

    .history__list {
        gap: 28px;
    }

    .history__group-title {
        font-size: 14px;
    }

    .history__items {
        gap: 10px;
    }

    .history__item-link {
        padding: 16px;
        gap: 16px;
    }

    .history__item-image {
        width: 64px;
        height: 64px;
    }

    .history__item-type {
        width: 26px;
        height: 26px;
    }

    .history__item-type svg {
        width: 14px;
        height: 14px;
    }

    .history__item-name {
        font-size: 16px;
    }

    .history__item-breed {
        font-size: 14px;
    }

    .history__item-meta {
        font-size: 13px;
    }

    .history__item-time {
        font-size: 13px;
    }

    .history__item-remove {
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .history__filters {
        gap: 12px;
        margin-bottom: 32px;
    }

    .history__list {
        gap: 32px;
    }

    .history__items {
        gap: 12px;
    }

    .history__item-link {
        padding: 18px 20px;
    }

    .history__item-image {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }

    .history__item-type {
        width: 28px;
        height: 28px;
        bottom: -5px;
        right: -5px;
    }

    .history__item-type svg {
        width: 15px;
        height: 15px;
    }

    .history__item-name {
        font-size: 17px;
    }

    .history__item-breed {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .history__item-meta {
        font-size: 13px;
        gap: 12px;
    }

    .history__item-time {
        font-size: 13px;
    }
}


/* ── ÚČET CHOVATELE (rozšíření pro chovatele) ── */

/* ========================================
   UCET CHOVATELE - CSS
   MOBILE FIRST PRISTUP
   Rozsireni zakladniho dashboard stylu
   ======================================== */

/* ========================================
   BODY MODIFIKATOR PRO DASHBOARD CHOVATELE
   ======================================== */

.body--breeder {
    background-color: #f5f5f7;
}

.body--breeder .footer {
    display: none;
}

/* ========================================
   BREEDER SIDEBAR - ORANZOVA VERZE MENU
   Prepis zakladnich dashboard stylu pro chovatele
   ======================================== */

/* Hamburger toggle */
.body--breeder .dashboard__menu-toggle {
    background-color: #ffedd5;
    color: #f97316;
}

.body--breeder .dashboard__menu-toggle:hover {
    background-color: #fed7aa;
}

/* Navigace - hover a aktivni stavy */
.body--breeder .dashboard__nav-link:hover {
    background-color: #fff7ed;
    color: #ea580c;
}

.body--breeder .dashboard__nav-link--active {
    background-color: #ffedd5;
    color: #f97316;
}

.body--breeder .dashboard__nav-link:hover .dashboard__nav-icon {
    color: #ea580c;
}

.body--breeder .dashboard__nav-link--active .dashboard__nav-icon {
    color: #f97316;
}

/* Badge - oranzovy gradient */
.body--breeder .dashboard__nav-badge {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Pocet polozek */
.body--breeder .dashboard__nav-link--active .dashboard__nav-count {
    background-color: #fed7aa;
    color: #ea580c;
}

/* CTA box - oranzovy gradient */
.body--breeder .dashboard__cta {
    background: linear-gradient(135deg, #f97316 0%, #c2410c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.body--breeder .dashboard__cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    color: #ea580c;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.body--breeder .dashboard__cta-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #ffedd5 100%);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ========================================
   MOBILE OVERRIDES - SJEDNOCENY DESIGN
   ======================================== */
@media (max-width: 767px) {
    .body--breeder .dashboard__main {
        padding-top: 12px;
    }

    /* Topbar - schovano pres base styl nize */

    /* Mobilni header - ikony a avatar */
    .dashboard__mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .dashboard__mobile-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        color: #6b7280;
        text-decoration: none;
    }

    .dashboard__mobile-icon svg {
        width: 20px;
        height: 20px;
    }

    .dashboard__mobile-icon:hover {
        background-color: #f3f4f6;
        color: #374151;
    }

    .dashboard__mobile-avatar {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        border: 2px solid #ffedd5;
    }

    .dashboard__mobile-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Stat karty - vetsi cisla, vetsi padding */
    .breeder__stats {
        gap: 10px;
        margin-bottom: 16px;
    }

    .breeder__stat {
        padding: 14px;
        gap: 8px;
    }

    .breeder__stat-number {
        font-size: 24px;
    }

    .breeder__stat-label {
        font-size: 11px;
    }

    .breeder__stat-trend {
        font-size: 10px;
    }

    .breeder__stat-chart {
        height: 40px;
    }

    /* Nadpisy sekci - sjednocene */
    .breeder__urgent-title,
    .breeder__quick-actions-title {
        font-size: 20px;
    }

    .breeder__urgent-subtitle {
        font-size: 12px;
    }

    /* Ukoly - citelne */
    .breeder__urgent-item {
        padding: 10px 14px;
    }

    .breeder__urgent-item-text {
        font-size: 14px;
    }

    .breeder__urgent-item-icon {
        width: 28px;
        height: 28px;
    }

    .breeder__urgent-item-icon svg {
        width: 14px;
        height: 14px;
    }

    .breeder__urgent-footer {
        font-size: 13px;
    }

    /* Rychle akce - vetsi pismo */
    .breeder__quick-actions {
        padding: 14px;
    }

    .breeder__quick-actions-grid {
        gap: 8px;
    }

    .breeder__quick-action {
        padding: 14px 8px;
        font-size: 13px;
    }

    /* Profil checklist */
    .profile-checklist {
        padding: 16px;
    }

    .profile-checklist__title {
        font-size: 20px;
    }

    .profile-checklist__subtitle {
        font-size: 12px;
    }

    .profile-checklist__sections {
        gap: 8px;
    }

    .profile-checklist__section {
        padding: 12px 14px;
    }

    .profile-checklist__section-title {
        font-size: 14px;
    }

    .profile-checklist__section-percent {
        font-size: 13px;
    }

    .profile-checklist__item {
        font-size: 13px;
    }

    .profile-checklist__warning {
        font-size: 13px;
        padding: 12px 14px;
    }

    /* Aktivni inzeraty */
    .body--breeder .dashboard__section {
        padding: 16px;
    }

    .body--breeder .dashboard__section-title {
        font-size: 20px;
    }
}

/* Back link */
.body--breeder .dashboard__back-link:hover {
    color: #f97316;
}

/* Filter tabs */
.body--breeder .dashboard__filter-tab:hover {
    background-color: #ffedd5;
    color: #f97316;
}

.body--breeder .dashboard__filter-tab--active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.body--breeder .dashboard__filter-tab--active:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Sort select focus */
.body--breeder .dashboard__sort-select:hover {
    border-color: #fdba74;
}

.body--breeder .dashboard__sort-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Empty button */
.body--breeder .dashboard__empty-button {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.body--breeder .dashboard__empty-button:hover {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.4);
}

/* Alert indicator */
.body--breeder .dashboard__alert-indicator {
    background-color: #f97316;
}

.body--breeder .dashboard__alert-icon {
    color: #f97316;
}

.body--breeder .dashboard__alert-action {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Card hover */
.body--breeder .puppy-card:hover,
.body--breeder .card--grid:hover {
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

/* Card add hover */
.body--breeder .dashboard__card-add:hover {
    border-color: #fb923c;
    background-color: #fff7ed;
}

.body--breeder .dashboard__card-add:hover .dashboard__card-add-icon,
.body--breeder .dashboard__card-add:hover .dashboard__card-add-text {
    color: #f97316;
}

/* Action hover */
.body--breeder .dashboard__action:hover {
    background-color: #fff7ed;
    border-color: #fdba74;
}

.body--breeder .dashboard__action-icon {
    color: #f97316;
}

.body--breeder .dashboard__action:hover .dashboard__action-text {
    color: #ea580c;
}

/* History filter */
.body--breeder .history__filter--active {
    background-color: #f97316;
}

.body--breeder .history__filter--active:hover {
    background-color: #ea580c;
}

.body--breeder .history__item:hover .history__item-name {
    color: #f97316;
}

.body--breeder .history__item-type--station {
    color: #f97316;
}

/* ========================================
   BREEDER HERO SECTION
   Atraktivni uvitaci sekce s nazvem stanice
   ======================================== */

/* ========================================
   TOP ROW - URGENT + QUICK ACTIONS GRID
   ======================================== */

.breeder__top-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.breeder__top-row .breeder__urgent,
.breeder__top-row .breeder__quick-actions--top {
    min-width: 0;
}

/* Rychle akce v top row */
.breeder__quick-actions--top {
    margin-bottom: 0;
}

/* ========================================
   BREEDER TOPBAR - BILA LISTA NAHORE
   Inspirovano Saanvi dashboardem
   ======================================== */

.breeder__topbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin: -16px -16px 16px -16px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    gap: 16px;
    position: relative;
}

.breeder__topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

.breeder__topbar-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.breeder__topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Vyhledávání */
.breeder__topbar-search {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f3f4f6;
    border-radius: 10px;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
    margin-left: auto;
}

.breeder__topbar-search:hover {
    background: #e5e7eb;
    color: #6b7280;
}

.breeder__topbar-search svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Ikonky */
.breeder__topbar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
}

.breeder__topbar-icon:hover {
    background-color: #f3f4f6;
    color: #374151;
}

.breeder__topbar-icon svg {
    width: 20px;
    height: 20px;
}

/* Blikající zvoneček */
.breeder__topbar-icon--bell .breeder__topbar-badge {
    background: #ef4444;
    animation: topbar-pulse 2s ease-in-out infinite;
}

@keyframes topbar-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Tooltip pod ikonkami */
.breeder__topbar-tooltip {
    display: none;
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: #1a1a2e;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 50;
}

.breeder__topbar-icon:hover .breeder__topbar-tooltip {
    display: block;
}

/* Badge pro počty */
.breeder__topbar-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background: #f97316;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 2px solid #ffffff;
}

/* Oddělovač */
.breeder__topbar-divider {
    width: 1px;
    height: 28px;
    background-color: #e5e7eb;
    margin: 0 8px;
}

/* Stanice (fotka + text) */
.breeder__topbar-station {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.15s ease;
}

.breeder__topbar-station:hover {
    background-color: #f3f4f6;
}

.breeder__topbar-station-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #f3f4f6;
    border: 2px solid #ffedd5;
}

.breeder__topbar-station-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breeder__topbar-station-info {
    display: none;
    flex-direction: column;
    gap: 0;
}

.breeder__topbar-station-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.breeder__topbar-station-label {
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.2;
}

/* ========================================
   STATISTIKY - DASHBOARD KARTY (Saanvi styl)
   MOBILE FIRST
   ======================================== */

.breeder__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

a.breeder__stat {
    text-decoration: none;
    cursor: pointer;
}

.breeder__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px;
    background-color: #ffffff;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    overflow: hidden;
}

.breeder__stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.breeder__stat-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.breeder__stat-icon svg {
    width: 18px;
    height: 18px;
}

/* Barevné varianty ikon */
.breeder__stat-icon--blue {
    background-color: #eff6ff;
    color: #3b82f6;
}

.breeder__stat-icon--orange {
    background-color: #fff7ed;
    color: #f97316;
}

.breeder__stat-icon--green {
    background-color: #f0fdf4;
    color: #22c55e;
}

.breeder__stat-icon--yellow {
    background-color: #fefce8;
    color: #eab308;
}

.breeder__stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.breeder__stat-label {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.2;
    order: -1;
}

.breeder__stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.5px;
}

.breeder__stat-trend {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
}

.breeder__stat-trend--up {
    color: #16a34a;
}

.breeder__stat-trend--down {
    color: #dc2626;
}

.breeder__stat-trend--neutral {
    color: #6b7280;
}

.breeder__stat-trend-text {
    font-weight: 400;
    color: #9ca3af;
}

/* Sparkline graf ve spodní části karty */
.breeder__stat-chart {
    margin-top: auto;
    margin-left: -14px;
    margin-right: -14px;
    margin-bottom: -14px;
    height: 50px;
    overflow: hidden;
}

.breeder__stat-chart svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Barvy sparkline grafů jsou definovány inline v SVG */

/* ========================================
   URGENTNI UKOLY - SJEDNOCENY S STAT KARTAMI
   ======================================== */

.breeder__urgent {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 14px;
    padding: 0;
    margin-bottom: 0;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
}

/* Header s nadpisem */
.breeder__urgent-header {
    padding: 14px 16px 10px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.breeder__urgent-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 650;
    color: #1a1a2e;
    margin: 0 0 2px 0;
    letter-spacing: -0.3px;
}

/* Ikona v nadpisu - viditelná pouze na mobilu */
.breeder__urgent-title svg {
    width: 16px;
    height: 16px;
    color: #f97316;
    flex-shrink: 0;
}

.breeder__urgent-subtitle {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

/* Jednotlive polozky - bez scrollbaru */
.breeder__urgent-items {
    display: flex;
    flex-direction: column;
    max-height: 280px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

/* Pozitivni stav - zadne urgentni ukoly */
.breeder__urgent-empty {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #f0fdf4;
}

.breeder__urgent-empty-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dcfce7;
    border-radius: 50%;
    color: #22c55e;
    flex-shrink: 0;
}

.breeder__urgent-empty-icon svg {
    width: 20px;
    height: 20px;
}

.breeder__urgent-empty-text {
    flex: 1;
}

.breeder__urgent-empty-title {
    font-size: 14px;
    font-weight: 600;
    color: #166534;
    margin: 0 0 2px 0;
}

.breeder__urgent-empty-subtitle {
    font-size: 12px;
    color: #15803d;
    margin: 0;
}

/* Modifikator pro prazdny stav */
.breeder__urgent--empty {
    border-color: #bbf7d0;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.15);
}

.breeder__urgent--empty .breeder__urgent-header {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.breeder__urgent-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    text-decoration: none;
    transition: all 0.15s ease;
    position: relative;
    border-left: 3px solid transparent;
}

.breeder__urgent-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 1px;
    background-color: #f0f0f0;
}

.breeder__urgent-item:last-child::after {
    display: none;
}

.breeder__urgent-item:hover {
    background-color: #fafbfc;
}

/* Barevné levé proužky podle priority */
.breeder__urgent-item--critical {
    border-left-color: #ef4444;
}

.breeder__urgent-item--warning {
    border-left-color: #f59e0b;
}

.breeder__urgent-item--info {
    border-left-color: #e5e7eb;
}

.breeder__urgent-item-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.breeder__urgent-item-icon svg {
    width: 13px;
    height: 13px;
}

/* === IKONY PODLE PRIORITY === */

/* KRITICKA priorita - cervena ikona */
.breeder__urgent-item-icon--critical {
    background-color: #ffffff;
    color: #dc2626;
}

/* WARNING priorita - oranzova/modra ikona */
.breeder__urgent-item-icon--warning {
    background-color: #ffffff;
    color: #2563eb;
}

/* INFO priorita - seda ikona (rutina, radostne udalosti) */
.breeder__urgent-item-icon--info {
    background-color: #ffffff;
    color: #6b7280;
}

/* === STYLY POLOZEK PODLE PRIORITY === */

/* Kriticka polozka */
.breeder__urgent-item--critical .breeder__urgent-item-text {
    color: #1a1a2e;
    font-weight: 600;
}

.breeder__urgent-item--critical:hover {
    background-color: #fafbfc;
}

/* Warning polozka */
.breeder__urgent-item--warning .breeder__urgent-item-text {
    color: #1a1a2e;
}

.breeder__urgent-item--warning:hover {
    background-color: #fafbfc;
}

/* Info polozka */
.breeder__urgent-item--info .breeder__urgent-item-text {
    color: #1a1a2e;
}

.breeder__urgent-item--info:hover {
    background-color: #fafbfc;
}

.breeder__urgent-item-text {
    flex: 1;
    font-size: 16px;
    color: #1a1a2e;
    line-height: 1.4;
}

.breeder__urgent-item-arrow {
    width: 14px;
    height: 14px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.breeder__urgent-item:hover .breeder__urgent-item-arrow {
    transform: translateX(3px);
}

/* Verify notifikace - rozšířený layout s akcemi */
.breeder__urgent-item--verify,
.breeder__urgent-item--verify-out {
    flex-wrap: wrap;
    cursor: default;
}

.breeder__urgent-item--verify:hover,
.breeder__urgent-item--verify-out:hover {
    transform: none;
}

.breeder__urgent-item-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.breeder__urgent-item-subtext {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.breeder__urgent-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.breeder__verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.breeder__verify-btn--confirm {
    background: #22c55e;
    color: #ffffff;
}

.breeder__verify-btn--confirm:hover {
    background: #16a34a;
}

.breeder__verify-btn--reject {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.breeder__verify-btn--reject:hover {
    background: #fef2f2;
}

.breeder__verify-btn--message {
    background: #f3f4f6;
    color: #374151;
}

.breeder__verify-btn--message:hover {
    background: #e5e7eb;
}

/* Highlight jména v notifikacích - semi-bold místo bold */
.breeder__urgent-highlight {
    font-weight: 550;
}

/* Success - potvrzené rodičovství */
.breeder__urgent-item--success {
    background-color: #f0fdf4;
    border-left: 4px solid #22c55e;
    cursor: default;
}

.breeder__urgent-item--success:hover {
    transform: none;
    background-color: #f0fdf4;
}

.breeder__urgent-item-icon--success {
    background-color: #dcfce7;
    color: #16a34a;
}

.breeder__urgent-item--success .breeder__urgent-item-text {
    color: #15803d;
    font-weight: 600;
}

.breeder__urgent-item-detail-link {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
    margin-top: 2px;
}

.breeder__urgent-item-detail-link:hover {
    text-decoration: underline;
}

.breeder__urgent-item-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #9ca3af;
    flex-shrink: 0;
    padding: 0;
    transition: all 0.15s;
    align-self: flex-start;
    margin-top: 2px;
}

.breeder__urgent-item-dismiss:hover {
    background: #dcfce7;
    color: #16a34a;
}

/* Footer odkaz - Zobrazit vsechny ukoly */
.breeder__urgent-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background-color: #fffbf7;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    font-weight: 600;
    color: #ea580c;
    text-decoration: none;
    transition: all 0.2s ease;
}

.breeder__urgent-footer:hover {
    background-color: #fff7ed;
    color: #c2410c;
}

.breeder__urgent-footer svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.breeder__urgent-footer:hover svg {
    transform: translateX(3px);
}

/* ========================================
   CONTENT GRID - AKTIVNI INZERATY
   ======================================== */

.breeder__content-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Karta vrhu */
.breeder__litter-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.breeder__litter-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.breeder__litter-image {
    height: 140px;
    background-color: #f3f4f6;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.breeder__litter-badge {
    padding: 6px 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    font-size: 12px;
    color: #6b7280;
}

.breeder__litter-content {
    padding: 14px;
}

.breeder__litter-title {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.breeder__litter-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
}

.breeder__litter-status--active {
    color: #10b981;
}

.breeder__litter-status--pending {
    color: #f59e0b;
}

/* ========================================
   RYCHLE AKCE BOX
   ======================================== */

.breeder__quick-actions {
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
}

.breeder__quick-actions-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 650;
    color: #1a1a2e;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

/* Ikona v nadpisu - viditelná pouze na mobilu */
.breeder__quick-actions-title svg {
    width: 16px;
    height: 16px;
    color: #f97316;
    flex-shrink: 0;
}

/* Grid 2x2 pro rychle akce */
.breeder__quick-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.breeder__quick-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 8px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.3;
}

.breeder__quick-action:last-child {
    margin-bottom: 0;
}

.breeder__quick-action svg {
    width: 20px !important;
    height: 20px !important;
}

.breeder__quick-action--primary {
    background-color: #ffffff;
    color: #ea580c;
    border: 3px solid #f97316;
}

.breeder__quick-action--primary:hover {
    background-color: #fff7ed;
    border-color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.15);
}

.breeder__quick-action--secondary {
    background-color: #ffffff;
    color: #4b5563;
    border: 3px solid #e5e7eb;
}

.breeder__quick-action--secondary:hover {
    background-color: #f9fafb;
    border-color: #f97316;
    color: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ========================================
   LITTERS GRID - PRO AKTIVNI INZERATY
   ======================================== */

.breeder__litters-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========================================
   TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    /* Top row - CSS grid 50/50, zarovnano s 4 stat kartami */
    .breeder__top-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: stretch;
        margin-bottom: 24px;
    }

    .breeder__top-row .breeder__urgent {
        margin-bottom: 0;
    }

    /* Tablet/Desktop: zrusit max-height, zobrazit vse */
    .breeder__urgent-items {
        max-height: 260px;
    }

    .breeder__top-row .breeder__quick-actions--top {
        width: auto;
    }

    /* Litters grid */
    .breeder__litters-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Topbar - tablet */
    .breeder__topbar {
        display: flex;
        margin: -28px -32px 24px -32px;
        padding: 0 32px;
        height: auto;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
        border-bottom: 1px solid #f1f5f9;
        gap: 20px;
    }

    .breeder__topbar-title {
        font-size: 26px;
    }

    .breeder__topbar-search {
        display: flex;
        min-width: 160px;
        position: absolute;
        left: calc(50% + 8px);
    }

    .breeder__topbar-right {
        position: absolute;
        left: calc(75% - 4px);
        gap: 6px;
        justify-content: flex-start;
        width: auto;
    }

    .breeder__topbar-icon {
        width: 42px;
        height: 42px;
    }

    .breeder__topbar-icon svg {
        width: 22px;
        height: 22px;
    }

    .breeder__topbar-station-info {
        display: flex;
    }

    .breeder__topbar-station-avatar {
        width: 50px;
        height: 50px;
    }

    .breeder__topbar-station-name {
        font-size: 16px;
    }

    /* Statistiky - tablet: 4 sloupce */
    .breeder__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-bottom: 24px;
    }

    .breeder__stat {
        padding: 16px;
        gap: 8px;
    }

    .breeder__stat-icon {
        width: 40px;
        height: 40px;
    }

    .breeder__stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .breeder__stat-number {
        font-size: 24px;
    }

    .breeder__stat-label {
        font-size: 12px;
    }

    .breeder__stat-chart {
        margin-left: -16px;
        margin-right: -16px;
        margin-bottom: -16px;
        height: 55px;
    }

    /* Urgentni ukoly - tablet */
    .breeder__urgent {
        border-radius: 16px;
    }

    .breeder__urgent-header {
        padding: 16px 20px 12px 20px;
    }

    .breeder__urgent-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }

    .breeder__urgent-icon svg {
        width: 16px;
        height: 16px;
    }

    .breeder__urgent-title {
        font-size: 24px;
    }

    .breeder__urgent-subtitle {
        font-size: 12px;
    }

    .breeder__urgent-item {
        padding: 10px 20px;
        gap: 12px;
    }

    .breeder__urgent-item-icon {
        width: 30px;
        height: 30px;
    }

    .breeder__urgent-item-icon svg {
        width: 15px;
        height: 15px;
    }

    .breeder__urgent-item-text {
        font-size: 16px;
    }

    .breeder__urgent-item-arrow {
        width: 14px;
        height: 14px;
    }

    .breeder__urgent-footer {
        padding: 12px 20px;
        font-size: 13px;
    }

    /* Content grid - 2 sloupce */
    .breeder__content-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .breeder__litter-image {
        height: 140px;
    }

    .breeder__litter-content {
        padding: 14px;
    }

    .breeder__litter-title {
        font-size: 15px;
    }

    .breeder__quick-actions {
        padding: 16px 20px;
        border-radius: 16px;
    }

    .breeder__quick-actions-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .breeder__quick-action {
        padding: 14px 10px;
        font-size: 16px;
        border-radius: 10px;
    }
}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    /* Top row - desktop gap stejný jako stats */
    .breeder__top-row {
        gap: 24px;
        margin-bottom: 32px;
    }

    /* Litters grid - 3 sloupce */
    .breeder__litters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Topbar - desktop - vyska odpovida sidebar-header (81px) */
    .breeder__topbar {
        margin: -44px -56px 32px -56px;
        padding: 0 56px;
        padding-top: 14px !important;
        padding-bottom: 0 !important;
        height: 81px;
        box-sizing: border-box;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: none;
        gap: 32px;
    }

    .breeder__topbar-title {
        font-size: 28px;
    }

    .breeder__topbar-search {
        min-width: 220px;
        padding: 10px 20px;
        font-size: 15px;
        left: calc(50% + 12px);
    }

    .breeder__topbar-right {
        left: calc(75% - 10px);
        gap: 8px;
    }

    .breeder__topbar-divider {
        margin: 0 8px;
        height: 36px;
    }

    .breeder__topbar-station {
        gap: 12px;
        padding: 6px 12px;
    }

    .breeder__topbar-station-avatar {
        width: 54px;
        height: 54px;
    }

    .breeder__topbar-station-name {
        font-size: 17px;
    }

    .breeder__topbar-station-label {
        font-size: 12px;
    }

    .breeder__stats {
        gap: 24px;
        margin-bottom: 32px;
    }

    .breeder__stat {
        padding: 22px;
        gap: 10px;
        border-radius: 18px;
    }

    .breeder__stat-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .breeder__stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .breeder__stat-number {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .breeder__stat-label {
        font-size: 14px;
    }

    .breeder__stat-trend {
        font-size: 13px;
    }

    .breeder__stat-chart {
        margin-left: -22px;
        margin-right: -22px;
        margin-bottom: -22px;
        height: 60px;
    }

    /* Urgentni ukoly - desktop */
    .breeder__urgent {
        margin-bottom: 0;
        border-radius: 18px;
    }

    .breeder__urgent-header {
        padding: 20px 24px 14px 24px;
    }

    .breeder__urgent-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .breeder__urgent-icon svg {
        width: 18px;
        height: 18px;
    }

    .breeder__urgent-title {
        font-size: 30px;
    }

    .breeder__urgent-subtitle {
        font-size: 13px;
    }

    .breeder__urgent-item {
        padding: 12px 24px;
        gap: 14px;
    }

    .breeder__urgent-item-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .breeder__urgent-item-icon svg {
        width: 17px;
        height: 17px;
    }

    .breeder__urgent-item-text {
        font-size: 17px;
    }

    .breeder__urgent-item-arrow {
        width: 16px;
        height: 16px;
    }

    .breeder__urgent-footer {
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Content grid */
    .breeder__content-grid {
        gap: 24px;
    }

    .breeder__litter-image {
        height: 180px;
    }

    .breeder__litter-content {
        padding: 18px;
    }

    .breeder__litter-title {
        font-size: 17px;
    }

    .breeder__quick-actions {
        padding: 20px 24px;
        border-radius: 18px;
    }

    .breeder__quick-actions-title {
        font-size: 30px;
        margin-bottom: 14px;
    }

    .breeder__quick-actions-grid {
        gap: 10px;
    }

    .breeder__quick-action {
        padding: 18px 12px;
        font-size: 17px;
        border-radius: 12px;
    }
}

/* ========================================
   VELKY DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    /* Top row - velký desktop gap stejný jako stats */
    .breeder__top-row {
        gap: 28px;
        margin-bottom: 36px;
    }

    /* Litters grid - 4 sloupce */
    .breeder__litters-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
    }

    /* Topbar - velký desktop - vyska odpovida sidebar-header (81px) */
    .breeder__topbar {
        margin: -48px -72px 36px -72px;
        padding: 0 72px;
        padding-top: 14px !important;
        padding-bottom: 0 !important;
        height: 81px;
        box-sizing: border-box;
        border-bottom: 1px solid #f1f5f9;
        box-shadow: none;
        gap: 36px;
    }

    .breeder__topbar-title {
        font-size: 30px;
    }

    .breeder__topbar-search {
        min-width: 280px;
        left: calc(50% + 14px);
    }

    .breeder__topbar-right {
        left: calc(75% - 15px);
    }

    .breeder__topbar-station-avatar {
        width: 58px;
        height: 58px;
        border-width: 3px;
    }

    .breeder__topbar-station-name {
        font-size: 18px;
    }

    .breeder__topbar-station-label {
        font-size: 12px;
    }

    .breeder__stats {
        gap: 28px;
        margin-bottom: 36px;
    }

    .breeder__stat {
        padding: 24px;
        gap: 10px;
    }

    .breeder__stat-number {
        font-size: 32px;
    }

    .breeder__stat-label {
        font-size: 15px;
    }

    .breeder__stat-trend {
        font-size: 14px;
    }

    .breeder__stat-chart {
        margin-left: -24px;
        margin-right: -24px;
        margin-bottom: -24px;
        height: 65px;
    }

    .breeder__litters-grid {
        gap: 28px;
    }

    .breeder__litter-image {
        height: 200px;
    }
}

/* ========================================
   NAVIGACE V SIDEBARU - FIX PRO KLIKATELNOST
   ======================================== */

.body--breeder .dashboard__nav {
    position: relative;
    z-index: 10;
}

.body--breeder .dashboard__nav-link {
    position: relative;
    z-index: 11;
}

/* ========================================
   SIDEBAR PROGRESS - KRUHOVY BAROMETR V MENU
   ======================================== */

/* MOBIL - kompaktni horizontalni layout */
.sidebar-progress {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 18px;
    margin: 0 16px 20px 16px;
    background: transparent;
    border-radius: 14px;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.2s ease;
}

/* Dekorativni svetelny efekt - vypnuto v cistem stylu */
.sidebar-progress::before {
    display: none;
}

/* MOBIL - kruh */
.sidebar-progress__circle {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    background-color: transparent;
    padding: 0;
    overflow: visible;
}

.sidebar-progress__svg {
    display: block;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    overflow: visible;
}

.sidebar-progress__bg {
    fill: none;
    stroke: #e5e7eb;
    stroke-width: 5;
}

.sidebar-progress__fill {
    fill: none;
    stroke-width: 5;
    stroke-linecap: butt;
    transition: stroke-dasharray 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none;
}

/* MOBIL - procenta */
.sidebar-progress__percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: 800;
    color: inherit;
}

/* MOBIL - texty */
.sidebar-progress__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.sidebar-progress__label {
    font-size: 14px;
    font-weight: 650;
    color: #1a1a2e;
}

.sidebar-progress__link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #f97316;
    background-color: #fff7ed;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #fed7aa;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar-progress__link:hover {
    background-color: #ffedd5;
    border-color: #f97316;
    transform: translateY(-1px);
}

.sidebar-progress__complete {
    font-size: 13px;
    color: #22c55e;
    font-weight: 700;
}

/* Hover efekt */
.sidebar-progress:hover {
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

/* DESKTOP (1024px+) - vertikalni layout */
@media (min-width: 1024px) {
    .sidebar-progress {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 14px;
        padding: 24px 18px;
        margin: 0 12px 20px 12px;
        border-radius: 14px;
    }

    .sidebar-progress__circle {
        width: 110px;
        height: 110px;
    }

    .sidebar-progress__percent {
        font-size: 24px;
    }

    .sidebar-progress__text {
        align-items: center;
        gap: 10px;
    }

    .sidebar-progress__label {
        font-size: 15px;
    }

    .sidebar-progress__link {
        font-size: 13px;
        padding: 8px 18px;
        border-radius: 8px;
    }

    .sidebar-progress__link:hover {
        transform: translateY(-2px);
    }

    .sidebar-progress:hover {
        transform: translateY(-2px);
    }
}

/* ========================================
   PROFILE CHECKLIST - DETAILNI BAROMETR NA NASTENCE
   ======================================== */

.profile-checklist {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
}

.profile-checklist__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.profile-checklist__header-left {
    flex: 1;
}

.profile-checklist__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 650;
    color: #1a1a2e;
    margin: 0 0 2px 0;
    letter-spacing: -0.3px;
}

/* Ikona v nadpisu - viditelná pouze na mobilu */
.profile-checklist__title svg {
    width: 16px;
    height: 16px;
    color: #f97316;
    flex-shrink: 0;
}

.profile-checklist__subtitle {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.profile-checklist__overall {
    flex-shrink: 0;
}

.profile-checklist__overall-circle {
    position: relative;
    width: 44px;
    height: 44px;
}

.profile-checklist__overall-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.profile-checklist__overall-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 2.5;
}

.profile-checklist__overall-fill {
    fill: none;
    stroke: #f97316;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.profile-checklist__overall-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #ea580c;
}

/* Sekce - čistý grid layout */
.profile-checklist__sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.profile-checklist__section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background-color: #ffffff;
    border-radius: 10px;
    border: 3px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.2s ease;
}

.profile-checklist__section:hover {
    background-color: #ffffff;
    border-color: #f97316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Pouze 100% dokončené sekce jsou zelené */
.profile-checklist__section--complete {
    border-color: #86efac;
}

.profile-checklist__section--complete:hover {
    border-color: #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.profile-checklist__section-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-checklist__section-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    border-radius: 10px;
    color: #6b7280;
    flex-shrink: 0;
}

.profile-checklist__section-icon svg {
    width: 18px;
    height: 18px;
}

/* Pouze 100% dokončené sekce mají zelenou ikonu */
.profile-checklist__section--complete .profile-checklist__section-icon {
    background-color: #dcfce7;
    color: #22c55e;
}

.profile-checklist__section-info {
    flex: 1;
    min-width: 0;
}

.profile-checklist__section-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0;
    line-height: 1.3;
}

.profile-checklist__section--complete .profile-checklist__section-title {
    color: #166534;
}

/* Skrýt progress bar */
.profile-checklist__section-bar {
    display: none;
}

.profile-checklist__section-bar-fill {
    display: none;
}

.profile-checklist__section-percent {
    font-size: 14px;
    font-weight: 700;
    color: #9ca3af;
    flex-shrink: 0;
}

.profile-checklist__section--complete .profile-checklist__section-percent {
    color: #22c55e;
}

/* Položky - čistý moderní styl */
.profile-checklist__items {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 4px;
}

.profile-checklist__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1a1a2e;
    padding: 4px 0;
}

.profile-checklist__item--done {
    color: #22c55e;
}

.profile-checklist__item--done .profile-checklist__item-name {
    text-decoration: line-through;
    color: #9ca3af;
}

.profile-checklist__item--required .profile-checklist__item-name {
    font-weight: 500;
}

.profile-checklist__item-icon {
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d1d5db;
}

.profile-checklist__item--done .profile-checklist__item-icon {
    color: #22c55e;
}

.profile-checklist__item-icon svg {
    width: 12px;
    height: 12px;
}

.profile-checklist__item-bullet {
    display: none;
}

.profile-checklist__item--required .profile-checklist__item-bullet {
    display: none;
}

.profile-checklist__item-required {
    font-size: 11px;
    font-weight: 600;
    color: #f97316;
    background-color: #fff7ed;
    padding: 1px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* Varovná zpráva */
.profile-checklist__warning {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 14px 18px;
    background-color: #ffffff;
    border: 3px solid #fde68a;
    border-radius: 10px;
    font-size: 14px;
    color: #92400e;
}

.profile-checklist__warning svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
    flex-shrink: 0;
}

.profile-checklist__warning strong {
    color: #78350f;
}

/* ========================================
   PROFILE CHECKLIST - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .profile-checklist {
        padding: 20px;
        border-radius: 16px;
    }

    .profile-checklist__header {
        margin-bottom: 16px;
    }

    .profile-checklist__title {
        font-size: 24px;
    }

    .profile-checklist__subtitle {
        font-size: 14px;
    }

    .profile-checklist__overall-circle {
        width: 52px;
        height: 52px;
    }

    .profile-checklist__overall-percent {
        font-size: 13px;
    }

    .profile-checklist__sections {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .profile-checklist__section {
        padding: 16px 18px;
        border-radius: 12px;
        gap: 8px;
    }

    .profile-checklist__section-icon {
        width: 38px;
        height: 38px;
    }

    .profile-checklist__section-icon svg {
        width: 18px;
        height: 18px;
    }

    .profile-checklist__section-title {
        font-size: 15px;
    }

    .profile-checklist__section-percent {
        font-size: 14px;
    }

    .profile-checklist__items {
        gap: 3px;
    }

    .profile-checklist__item {
        font-size: 14px;
        gap: 8px;
    }

    .profile-checklist__item-icon {
        width: 16px;
        height: 16px;
    }

    .profile-checklist__item-icon svg {
        width: 14px;
        height: 14px;
    }

    .profile-checklist__item-required {
        font-size: 11px;
    }
}

/* ========================================
   PROFILE CHECKLIST - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .profile-checklist {
        padding: 28px 32px;
        border-radius: 18px;
    }

    .profile-checklist__header {
        margin-bottom: 20px;
    }

    .profile-checklist__title {
        font-size: 30px;
    }

    /* Na desktopu skrýt ikony ve všech nadpisech - sjednocený vzhled */
    .profile-checklist__title svg,
    .breeder__urgent-title svg,
    .breeder__quick-actions-title svg {
        display: none;
    }

    .profile-checklist__subtitle {
        font-size: 15px;
    }

    .profile-checklist__overall-circle {
        width: 56px;
        height: 56px;
    }

    .profile-checklist__overall-percent {
        font-size: 14px;
    }

    .profile-checklist__sections {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .profile-checklist__section {
        padding: 18px 20px;
        border-radius: 12px;
        gap: 10px;
    }

    .profile-checklist__section-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .profile-checklist__section-icon svg {
        width: 20px;
        height: 20px;
    }

    .profile-checklist__section-title {
        font-size: 16px;
    }

    .profile-checklist__section-percent {
        font-size: 15px;
    }

    .profile-checklist__items {
        gap: 4px;
        padding-top: 8px;
        margin-top: 8px;
    }

    .profile-checklist__item {
        font-size: 15px;
        gap: 10px;
        padding: 4px 0;
    }

    .profile-checklist__item-icon {
        width: 18px;
        height: 18px;
    }

    .profile-checklist__item-icon svg {
        width: 16px;
        height: 16px;
    }

    .profile-checklist__item-required {
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* ========================================
   DASHBOARD SECTION - VETSI FONTY PRO CHOVATELE
   Prepis base stylu pro cistejsi look
   ======================================== */

.body--breeder .dashboard__section {
    background-color: #ffffff;
    border-radius: 14px;
    padding: 14px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.body--breeder .dashboard__section-title {
    font-size: 22px;
    font-weight: 650;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {
    .body--breeder .dashboard__section {
        padding: 20px;
        border-radius: 16px;
    }

    .body--breeder .dashboard__section-title {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .body--breeder .dashboard__section {
        padding: 24px 28px;
        border-radius: 18px;
        margin-bottom: 24px;
    }

    .body--breeder .dashboard__section-title {
        font-size: 30px;
        letter-spacing: -0.3px;
    }
}

/* ========================================
   ZPRAVY CHOVATELE
   - Avatary zajemcu = FIALOVE (bezni uzivatele)
   - Bubliny chovatele (mine) = ORANZOVE
   - Bubliny zajemce (theirs) = bile/sede
   ======================================== */

/* Avatar zajemcu - FIALOVY gradient (jsou to bezni uzivatele) */
.body--breeder .messages__conversation-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Detail avatar - taky fialovy */
.body--breeder .messages__detail-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Tecka pro neprectene - ORANZOVA (aby ladila s UI chovatele) */
.body--breeder .messages__conversation-dot {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Oranžové zvýraznění pro aktivní konverzaci */
.body--breeder .messages__conversation--active {
    background-color: #fff7ed;
}

/* Oranžové zvýraznění pro nepřečtené */
.body--breeder .messages__conversation--unread {
    background-color: #fffbf5;
}

.body--breeder .messages__conversation--unread:hover {
    background-color: #fff7ed;
}

.body--breeder .messages__conversation--unread .messages__conversation-time {
    color: #f97316;
}

/* Oranžová barva pro předmět */
.body--breeder .messages__conversation-breed {
    color: #ea580c;
}

/* Bubliny zpráv chovatele - ORANZOVE */
.body--breeder .messages__bubble--mine {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* ========================================
   STRANKA VSECH UKOLU - MOBILE FIRST
   ======================================== */

.dashboard__page-header {
    margin-bottom: 28px;
}

.dashboard__page-title {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 6px 0;
}

.dashboard__page-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

/* Sekce ukolu */
.tasks-section {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

.tasks-section__header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tasks-section__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.tasks-section__icon svg {
    width: 22px;
    height: 22px;
}

.tasks-section__icon--critical {
    background-color: #fef2f2;
    color: #dc2626;
}

.tasks-section__icon--warning {
    background-color: #eff6ff;
    color: #2563eb;
}

.tasks-section__icon--info {
    background-color: #f9fafb;
    color: #6b7280;
}

.tasks-section__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.tasks-section__title {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0;
}

.tasks-section__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    background-color: #f0f0f0;
    color: #6b7280;
}

.tasks-section--critical .tasks-section__count {
    background-color: #fef2f2;
    color: #dc2626;
}

.tasks-section--warning .tasks-section__count {
    background-color: #eff6ff;
    color: #2563eb;
}

/* Seznam ukolu */
.tasks-section__list {
    display: flex;
    flex-direction: column;
}

/* Jednotlivy ukol */
.task-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    text-decoration: none;
    transition: background-color 0.2s ease;
    position: relative;
}

.task-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #f0f0f0;
}

.task-item:last-child::after {
    display: none;
}

.task-item:hover {
    background-color: #fafafa;
}

.task-item__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.task-item__icon svg {
    width: 18px;
    height: 18px;
}

/* Ikony podle priority */
.task-item--critical .task-item__icon {
    background-color: #fef2f2;
    color: #dc2626;
}

.task-item--warning .task-item__icon {
    background-color: #eff6ff;
    color: #2563eb;
}

.task-item--info .task-item__icon {
    background-color: #f9fafb;
    color: #6b7280;
}

.task-item__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.task-item__text {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.task-item--critical .task-item__text {
    color: #991b1b;
    font-weight: 600;
}

.task-item--warning .task-item__text {
    color: #1e40af;
}

.task-item__meta {
    font-size: 12px;
    color: #9ca3af;
}

.task-item--critical .task-item__meta {
    color: #f87171;
}

.task-item--warning .task-item__meta {
    color: #93c5fd;
}

/* Verify task items - rozšířený layout */
.task-item--verify {
    align-items: flex-start;
    cursor: default;
}

.task-item--verify:hover {
    transform: none;
}

.task-item__subtext {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.task-item__actions {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

/* Success task item - zelená */
.task-item--success {
    background-color: #f0fdf4;
    border-left: 4px solid #22c55e;
    cursor: default;
}

.task-item--success:hover {
    transform: none;
    background-color: #f0fdf4;
}

.task-item__icon--success {
    background-color: #dcfce7;
    color: #16a34a;
}

.task-item--success .task-item__text {
    color: #15803d;
    font-weight: 550;
}

.task-item__detail-link {
    font-size: 12px;
    font-weight: 600;
    color: #16a34a;
    text-decoration: none;
}

.task-item__detail-link:hover {
    text-decoration: underline;
}

.task-item__dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #9ca3af;
    flex-shrink: 0;
    padding: 0;
    transition: all 0.15s;
}

.task-item__dismiss:hover {
    background: #dcfce7;
    color: #16a34a;
}

.task-item__arrow {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.task-item:hover .task-item__arrow {
    transform: translateX(3px);
}

.task-item--critical .task-item__arrow {
    color: #dc2626;
}

.task-item--warning .task-item__arrow {
    color: #3b82f6;
}

/* ========================================
   STRANKA VSECH UKOLU - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .dashboard__page-title {
        font-size: 28px;
    }

    .tasks-section {
        margin-bottom: 24px;
    }

    .tasks-section__header {
        padding: 24px;
    }

    .tasks-section__title {
        font-size: 20px;
    }

    .task-item {
        padding: 18px 24px;
    }

    .task-item__icon {
        width: 44px;
        height: 44px;
    }

    .task-item__icon svg {
        width: 20px;
        height: 20px;
    }

    .task-item__text {
        font-size: 15px;
    }

    .task-item__meta {
        font-size: 13px;
    }
}

/* ========================================
   STRANKA VSECH UKOLU - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .dashboard__page-header {
        margin-bottom: 32px;
    }

    .dashboard__page-title {
        font-size: 30px;
    }

    .tasks-section__icon {
        width: 48px;
        height: 48px;
    }

    .tasks-section__icon svg {
        width: 24px;
        height: 24px;
    }

    .task-item {
        padding: 20px 28px;
        gap: 16px;
    }

    .task-item__icon {
        width: 48px;
        height: 48px;
    }

    .task-item__icon svg {
        width: 22px;
        height: 22px;
    }
}


/* ── ODCHOVY (karty vrhů) ── */

/* ========================================
   ODCHOVY - Stránka s přehledem odchovů stanice
   MOBILE FIRST - základní styly pro mobil

   POZOR: Layout styly (page-layout, sidebar-menu, stanice-info)
   jsou v sdíleném souboru: assets/css/layout-sidebar.css
   ======================================== */

/* ========================================
   LAYOUT ÚPRAVY - MOBIL
   ======================================== */

/* Menší mezera mezi roletkou a obsahem */
.page-odchovy .page-layout__sidebar {
    padding-bottom: 8px;
}

/* ========================================
   HLAVNÍ SEKCE ODCHOVY - MOBIL
   (Styly hlavičky jsou v components/station-header/station-header.css)
   ======================================== */

.odchovy {
    margin-top: 16px;
    padding: 0 4px;
}

/* ========================================
   NADPIS PLEMENE - MOBIL
   ======================================== */

.odchovy__breed-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 16px 0;
    padding: 0;
}

.odchovy__breed-title::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23667eea'%3E%3Cpath d='M226.5 92.9c14.3 42.9-.3 86.2-32.6 96.8s-70.1-15.6-84.4-58.5.3-86.2 32.6-96.8 70.1 15.6 84.4 58.5zM100.4 198.6c18.9 32.4 14.3 70.1-10.2 84.1s-59.7-.9-78.5-33.3S-2.7 179.3 21.8 165.3s59.7.9 78.6 33.3zM69.2 401.2C121.6 259.9 214.7 224 256 224s134.4 35.9 186.8 177.2c3.6 9.7 5.2 20.1 5.2 30.5v1.6c0 25.8-20.9 46.7-46.7 46.7-11.5 0-22.9-1.4-34-4.2l-88-22c-15.3-3.8-31.3-3.8-46.6 0l-88 22c-11.1 2.8-22.5 4.2-34 4.2-25.8 0-46.7-20.9-46.7-46.7v-1.6c0-10.4 1.6-20.8 5.2-30.5zM411.6 198.6c18.9-32.4 54.1-57.8 78.5-33.3s29.1 51.7 10.2 84.1-54.1 57.8-78.5 33.3-29.1-51.7-10.2-84.1zM285.5 92.9c14.3-42.9 51.7-66.9 84.4-58.5s46.9 53.9 32.6 96.8-51.7 66.9-84.4 58.5-46.9-53.9-32.6-96.8z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ========================================
   SEKCE PRO KAŽDÉ PLEMENO - MOBIL
   ======================================== */

.odchovy__breed {
    display: block;
    margin-bottom: 32px;
}

.odchovy__breed:last-child {
    margin-bottom: 0;
}

/* ========================================
   SEKCE AKTUÁLNÍ/PLÁNOVANÉ/HISTORIE - MOBIL
   ======================================== */

.odchovy__section {
    margin-bottom: 32px;
}

.odchovy__section:last-child {
    margin-bottom: 0;
}

.odchovy__section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

/* ========================================
   GRID S KARTAMI - MOBIL (horizontální scroll)
   ======================================== */

.odchovy__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-right: -4px;
}

.odchovy__grid::-webkit-scrollbar {
    display: none;
}

.odchovy__grid {
    scrollbar-width: none;
}

/* ========================================
   KARTA VRHU - MOBIL (styl jako chovni-jedinci)
   ======================================== */

.litter-card {
    flex: 0 0 auto;
    width: calc(70% - 5px);
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.litter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.litter-card__image-wrapper {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-start;
    padding: 6px;
    gap: 4px;
    border-radius: 12px 12px 0 0;
}

.litter-card__image-wrapper--dual {
    padding: 0;
}

.litter-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.litter-card__image-wrapper--dual .litter-card__image {
    position: absolute;
    top: 0;
    width: 55%;
    height: 100%;
    object-fit: cover;
}

.litter-card__image--left {
    left: 0;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.litter-card__image--right {
    left: 45%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.litter-card:hover .litter-card__image {
    transform: scale(1.05);
}

.litter-card__content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background-color: #ffffff;
}

/* ========================================
   HEADER KARTY S NÁZVEM A PLEMENEM - MOBIL
   ======================================== */

.litter-card__header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.litter-card__title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.litter-card__breed {
    font-size: 13px;
    color: #667eea;
    font-weight: 500;
}

/* ========================================
   INFO ŘÁDKY - MOBIL
   ======================================== */

.litter-card__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    flex-grow: 1;
}

.litter-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
}

.litter-card__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    flex-shrink: 0;
}

/* ========================================
   DATUM ODBĚRU ZVÝRAZNĚNÝ - MOBIL
   ======================================== */

.litter-card__row--pickup {
    background-color: rgba(16, 185, 129, 0.08);
    border-radius: 6px;
    padding: 6px 8px;
    margin: 2px -8px;
}

.litter-card__row--pickup .litter-card__label {
    color: #059669;
    font-weight: 500;
}

.litter-card__row--pickup .litter-card__value {
    color: #059669;
    font-weight: 600;
}

/* ========================================
   IKONY V INFO ŘÁDCÍCH - MOBIL
   ======================================== */

.litter-card__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #999;
}

.litter-card__icon--female {
    color: #f472b6;
}

.litter-card__icon--male {
    color: #60a5fa;
}

.litter-card__icon--highlight {
    color: #10b981;
}

.litter-card__value {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
    text-align: right;
}

.litter-card__value--highlight {
    color: #667eea;
    font-weight: 600;
}

.litter-card__value--success {
    color: #10b981;
    font-weight: 600;
}

.litter-card__link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.litter-card__link:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* ========================================
   POČET ŠTĚŇAT - MOBIL
   ======================================== */

.litter-card__puppies {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.litter-card__puppy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
}

.litter-card__puppy--male {
    background-color: #60a5fa;
}

.litter-card__puppy--female {
    background-color: #f472b6;
}

/* ========================================
   ŠTÍTKY NA KARTÁCH VRHŮ - MOBIL
   ======================================== */

.litter-card__badges {
    position: absolute;
    bottom: 6px;
    left: 6px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 4px;
    max-width: calc(100% - 12px);
    z-index: 10;
}

.litter-card__badge {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    white-space: nowrap;
}

/* DOSTUPNOST štítky */
.litter-card__badge--available {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.litter-card__badge--reserved {
    background: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
}

.litter-card__badge--sold {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* STAV VRHU štítky */
.litter-card__badge--growing {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.litter-card__badge--planned {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.litter-card__badge--confirmed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

/* REZERVACE štítky */
.litter-card__badge--reservation,
.litter-card__badge--open {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.litter-card__badge--closed {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

/* ========================================
   TLAČÍTKA NA KARTÁCH - MOBIL
   ======================================== */

.litter-card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 20px;
    font-size: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.litter-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ========================================
   RESPONZIVITA - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .odchovy__breed-title {
        font-size: 24px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .odchovy__breed-title::before {
        width: 28px;
        height: 28px;
    }

    .odchovy__section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .odchovy {
        margin-top: 20px;
        padding: 0;
    }

    .odchovy__breed {
        margin-bottom: 48px;
    }

    .odchovy__section {
        margin-bottom: 36px;
    }

    .odchovy__section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .odchovy__grid {
        flex-wrap: wrap;
        gap: 20px;
        overflow-x: visible;
        scroll-snap-type: none;
        margin-right: 0;
    }

    /* 3 karty na řádek na tabletu */
    .litter-card {
        width: calc(33.333% - 14px);
        scroll-snap-align: none;
    }

    .litter-card__image-wrapper {
        height: 160px;
        padding: 10px;
        gap: 5px;
    }

    .litter-card__image-wrapper--dual {
        padding: 0;
    }

    .litter-card__content {
        padding: 14px;
    }

    .litter-card__header {
        gap: 4px;
        margin-bottom: 8px;
    }

    .litter-card__title {
        font-size: 16px;
    }

    .litter-card__breed {
        font-size: 13px;
    }

    .litter-card__info {
        gap: 8px;
        margin-bottom: 14px;
    }

    .litter-card__label,
    .litter-card__value,
    .litter-card__link {
        font-size: 12px;
    }

    .litter-card__puppy {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .litter-card__badges {
        bottom: 10px;
        left: 10px;
        gap: 5px;
        max-width: calc(100% - 20px);
    }

    .litter-card__badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .litter-card__button {
        padding: 10px 14px;
        font-size: 13px;
    }
}

/* ========================================
   RESPONZIVITA - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .odchovy__breed-title {
        font-size: 26px;
        gap: 14px;
        margin-bottom: 24px;
    }

    .odchovy__breed-title::before {
        width: 30px;
        height: 30px;
    }

    .odchovy__section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .odchovy {
        margin-top: 24px;
    }

    .odchovy__breed {
        margin-bottom: 56px;
    }

    .odchovy__section {
        margin-bottom: 40px;
    }

    .odchovy__section-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .odchovy__grid {
        gap: 24px;
    }

    /* 3 karty na řádek na desktopu (sidebar zabírá místo) */
    .litter-card {
        width: calc(33.333% - 16px);
    }

    .litter-card__image-wrapper {
        height: 180px;
        padding: 12px;
        gap: 6px;
    }

    .litter-card__image-wrapper--dual {
        padding: 0;
    }

    .litter-card__content {
        padding: 16px;
    }

    .litter-card__header {
        gap: 4px;
        margin-bottom: 10px;
    }

    .litter-card__title {
        font-size: 17px;
    }

    .litter-card__breed {
        font-size: 14px;
    }

    .litter-card__info {
        gap: 8px;
        margin-bottom: 16px;
    }

    .litter-card__label,
    .litter-card__value,
    .litter-card__link {
        font-size: 13px;
    }

    .litter-card__puppy {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .litter-card__badges {
        bottom: 12px;
        left: 12px;
        gap: 6px;
        max-width: calc(100% - 24px);
    }

    .litter-card__badge {
        font-size: 11px;
        padding: 4px 10px;
    }

    .litter-card__button {
        margin-top: 14px;
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* ========================================
   RESPONZIVITA - VELKÉ DISPLEJE (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    .odchovy__grid {
        gap: 28px;
    }

    .litter-card {
        width: calc(33.333% - 19px);
    }
}

/* Layout styly (page-layout, sidebar-menu, stanice-info responzivita)
   jsou v sdíleném souboru: assets/css/layout-sidebar.css */


/* ── ÚČET CHOVATELE - ODCHOVY (specifické styly) ── */

/* ========================================
   UCET CHOVATELE - ODCHOVY
   Admin vrstva nad sdílenými litter-card styly
   (Základní karty jsou v pages/odchovy/odchovy.css)
   MOBILE FIRST
   ======================================== */

/* ========================================
   TITLE COUNT
   ======================================== */

.odchovy__title-count {
    font-size: 0.65em;
    font-weight: 500;
    color: #9ca3af;
}

/* ========================================
   SEARCH INPUT
   ======================================== */

.odchovy__search-input {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #1a1a2e;
    outline: none;
    width: 100%;
    font-family: inherit;
}

/* ========================================
   TOOLBAR - FILTRY + PŘIDAT
   ======================================== */

.odchovy__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.odchovy__filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.odchovy__filters::-webkit-scrollbar {
    display: none;
}

.odchovy__filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: inherit;
}

.odchovy__filter:hover {
    background-color: #fff7ed;
    border-color: #fed7aa;
    color: #ea580c;
}

.odchovy__filter--active {
    background-color: #fff7ed;
    border-color: #f97316;
    color: #ea580c;
    font-weight: 600;
}

.odchovy__filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.odchovy__filter-dot--active { background-color: #22c55e; }
.odchovy__filter-dot--planned { background-color: #f59e0b; }
.odchovy__filter-dot--sold { background-color: #9ca3af; }

/* ========================================
   FAB TLAČÍTKO - PŘIDAT VRH
   ======================================== */

.odchovy__add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.odchovy__add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.odchovy__add-btn svg {
    width: 24px;
    height: 24px;
}

.odchovy__add-btn-text {
    display: none;
}

.odchovy__add-btn--fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 50% !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    animation: odchovy-fab-in 0.3s ease;
}

.odchovy__add-btn--fab .odchovy__add-btn-text {
    display: none !important;
}

.odchovy__add-btn--fab svg {
    width: 26px;
    height: 26px;
}

@keyframes odchovy-fab-in {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ========================================
   GRID OVERRIDE - v dashboardu
   Karty ve wrapping gridu místo horizontálního scrollu
   ======================================== */

.dashboard__main .odchovy__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    overflow-x: visible;
    scroll-snap-type: none;
    margin-right: 0;
}

.dashboard__main .litter-card {
    width: 100%;
    scroll-snap-align: none;
}

/* ========================================
   ADMIN DOPLŇKY NA KARTÁCH
   ======================================== */

/* Progress bar - vyplněnost profilu */
.litter-card__progress {
    padding: 6px 8px;
    margin: 2px -8px 10px;
    background-color: #f9fafb;
    border-radius: 6px;
}

.litter-card__progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.litter-card__progress-label {
    font-size: 11px;
    font-weight: 600;
    color: #374151;
}

.litter-card__progress-hint {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
}

.litter-card__progress-complete {
    font-size: 11px;
    font-weight: 600;
    color: #22c55e;
}

.litter-card__progress-track {
    width: 100%;
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
}

.litter-card__progress-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* Admin akce - 2 tlačítka */
.litter-card__admin-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: auto;
}

.litter-card__button--secondary {
    background: #f3f4f6;
    color: #4b5563;
    box-shadow: none;
    font-size: 13px;
    padding: 9px 14px;
}

.litter-card__button--secondary:hover {
    background: #e5e7eb;
    transform: none;
    box-shadow: none;
}

/* ========================================
   PLÁNOVANÉ VRHY - info banner
   ======================================== */

.planned__info {
    display: flex;
    gap: 10px;
    padding: 12px 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.planned__info-icon {
    width: 18px;
    height: 18px;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 1px;
}

.planned__info-text {
    font-size: 13px;
    color: #1e40af;
    line-height: 1.5;
    margin: 0;
}

.planned__info-text a {
    color: #1e40af;
    font-weight: 600;
    text-decoration: underline;
}

/* Poznámka na kartě */
.litter-card__value--note {
    font-style: italic;
    color: #9ca3af;
    font-size: 12px;
}

/* Tlačítko "Narodil se!" */
.litter-card__button--born {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    border: none;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.litter-card__button--born:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

/* ========================================
   FILTR PLEMEN
   ======================================== */

.odchovy__breed-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.odchovy__breed-filters::-webkit-scrollbar {
    display: none;
}

.odchovy__breed-filter {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-family: inherit;
}

.odchovy__breed-filter:hover {
    border-color: #fed7aa;
    color: #ea580c;
}

.odchovy__breed-filter--active {
    background-color: #fff7ed;
    border-color: #f97316;
    color: #ea580c;
    font-weight: 600;
}

.odchovy__breed-filter-count {
    font-size: 11px;
    font-weight: 600;
    background-color: #f3f4f6;
    color: #6b7280;
    padding: 1px 6px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

.odchovy__breed-filter--active .odchovy__breed-filter-count {
    background-color: #f97316;
    color: #ffffff;
}

/* ========================================
   ARCHIVACE VRHU
   ======================================== */

/* Křížek v rohu fotky */
.litter-card__archive-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #ffffff;
    padding: 0;
    opacity: 0;
    transition: opacity 0.2s, background-color 0.2s;
    z-index: 5;
}

.litter-card__archive-btn svg {
    width: 14px;
    height: 14px;
}

.litter-card--admin:hover .litter-card__archive-btn {
    opacity: 1;
}

.litter-card__archive-btn:hover {
    background: rgba(239, 68, 68, 0.85);
}

/* Archivovaná karta - šedá */
.litter-card--archived {
    opacity: 0.55;
    filter: grayscale(0.8);
    transition: opacity 0.3s, filter 0.3s;
}

.litter-card--archived:hover {
    opacity: 0.75;
    filter: grayscale(0.4);
}

.litter-card--archived .litter-card__archive-btn {
    display: none;
}

/* Tlačítko Obnovit */
.litter-card__button--restore {
    background: #f3f4f6;
    color: #4b5563;
    border: 1px dashed #d1d5db;
    box-shadow: none;
    font-size: 13px;
    padding: 9px 14px;
    font-weight: 600;
    font-family: inherit;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.2s;
}

.litter-card__button--restore:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Filtr tečka - archivované */
.odchovy__filter-dot--archived {
    background-color: #d1d5db;
}

/* Archivační dialog */
.odchovy__archive-dialog {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.odchovy__archive-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #fef2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #ef4444;
}

.odchovy__archive-icon svg {
    width: 26px;
    height: 26px;
}

.odchovy__archive-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.odchovy__archive-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0 0 20px;
}

.odchovy__archive-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.odchovy__form-btn--danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.odchovy__form-btn--danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(239, 68, 68, 0.4);
}

/* ========================================
   EMPTY STATE
   ======================================== */

.odchovy__empty {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border-radius: 14px;
    border: 2px dashed #e5e7eb;
}

.odchovy__empty-icon {
    width: 64px;
    height: 64px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.odchovy__empty-icon svg {
    width: 100%;
    height: 100%;
}

.odchovy__empty-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.odchovy__empty-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px;
    max-width: 400px;
}

.odchovy__empty-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odchovy__empty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* ========================================
   PHOTO UPLOAD - TITULNÍ FOTKA VRHU
   ======================================== */

.odchovy__photo-input {
    display: none;
}

.odchovy__photo-dropzone {
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background-color 0.2s;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.odchovy__photo-dropzone:hover,
.odchovy__photo-dropzone--dragover {
    border-color: #f97316;
    background-color: rgba(249, 115, 22, 0.04);
}

.odchovy__photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.odchovy__photo-placeholder svg {
    width: 36px;
    height: 36px;
}

.odchovy__photo-placeholder span {
    font-size: 13px;
    font-weight: 500;
}

.odchovy__photo-preview {
    position: relative;
    display: inline-block;
}

.odchovy__photo-preview img {
    max-width: 100%;
    max-height: 180px;
    border-radius: 8px;
    object-fit: cover;
}

.odchovy__photo-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ef4444;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.odchovy__photo-remove svg {
    width: 12px;
    height: 12px;
}

/* ========================================
   SUCCESS DIALOG - PO PŘIDÁNÍ VRHU
   ======================================== */

.odchovy__success-dialog {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.odchovy__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ecfdf5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.odchovy__success-icon svg {
    width: 32px;
    height: 32px;
    color: #22c55e;
}

.odchovy__success-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 10px;
}

.odchovy__success-text {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 0 24px;
}

.odchovy__success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.odchovy__success-actions .odchovy__form-btn--publish {
    text-decoration: none;
    text-align: center;
}

/* ========================================
   MODAL - PŘIDAT/UPRAVIT VRH
   (Sdílený styl s novinky)
   MOBILE FIRST
   ======================================== */

.odchovy__dialog-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 8px;
}

.odchovy__modal {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 16px;
    max-width: 640px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
}

.odchovy__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odchovy__modal-close svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
}

.odchovy__modal-close:hover {
    background: #e5e7eb;
}

.odchovy__modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px;
    padding-right: 36px;
}

.odchovy__modal-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
    line-height: 1.5;
}

/* ========================================
   FORMULÁŘ V MODALU
   (Sdílené styly s novinky - form-input, form-label atd.)
   ======================================== */

.odchovy__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 12px;
    align-items: start;
}

.odchovy__form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
    align-self: start;
}

.odchovy__form-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

.odchovy__form-required {
    color: #ef4444;
    font-weight: 600;
}

.odchovy__form-input {
    padding: 10px 14px;
    font-size: 15px;
    color: #1a1a2e;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s ease;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

.odchovy__form-input:focus {
    border-color: #f97316;
}

.odchovy__form-input--error {
    border-color: #ef4444;
}

.odchovy__form-select {
    padding: 10px 14px;
    font-size: 14px;
    color: #1a1a2e;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    outline: none;
    width: 100%;
    transition: border-color 0.2s ease;
    appearance: none;
    font-family: inherit;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 36px;
}

.odchovy__form-select:focus {
    border-color: #f97316;
}

.odchovy__form-select--error {
    border-color: #ef4444;
}

.odchovy__form-select option:disabled {
    color: #c0c4cc;
}

/* Date picker - moderní styl */
.odchovy__form-date-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.odchovy__form-date-icon {
    position: absolute;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: #f97316;
}

.odchovy__form-date-icon svg {
    width: 18px;
    height: 18px;
}

.odchovy__form-input--date {
    padding-left: 42px;
    color: #1a1a2e;
    min-height: 46px;
    cursor: pointer;
    accent-color: #f97316;
    color-scheme: light;
}

/* Schovat výchozí ikonu pickeru - klikání řeší celý input */
.odchovy__form-input--date::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* Placeholder styl když není hodnota */
.odchovy__form-input--date:invalid,
.odchovy__form-input--date[value=""] {
    color: #9ca3af;
}

/* Hint pod polem */
.odchovy__form-hint {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Breed autocomplete */
.odchovy__breed-input-wrap {
    position: relative;
}

.odchovy__breed-selected {
    margin-bottom: 0;
}

.odchovy__breed-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ea580c;
    background-color: #fff7ed;
    border: 2px solid #fed7aa;
    border-radius: 10px;
}

.odchovy__breed-tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: #f97316;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
}

.odchovy__breed-tag-remove svg {
    width: 10px;
    height: 10px;
    color: #ffffff;
}

.odchovy__breed-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 10;
    display: none;
}

.odchovy__breed-suggestions--visible {
    display: block;
}

.odchovy__breed-suggestion {
    padding: 10px 14px;
    font-size: 14px;
    color: #1a1a2e;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.odchovy__breed-suggestion:hover {
    background-color: #fff7ed;
}

.odchovy__breed-suggestion:last-child {
    border-radius: 0 0 10px 10px;
}

.odchovy__breed-suggestion strong {
    color: #f97316;
}

.odchovy__breed-suggestion-group {
    padding: 8px 14px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9ca3af;
    pointer-events: none;
}

.odchovy__breed-suggestion-group:not(:first-child) {
    border-top: 1px solid #f3f4f6;
    margin-top: 4px;
    padding-top: 10px;
}

/* Parent autocomplete */
.odchovy__autocomplete {
    position: relative;
}

.odchovy__autocomplete .odchovy__form-input {
    scroll-margin-top: 70px;
}

.odchovy__autocomplete-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-top: none;
    border-radius: 0 0 10px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 240px;
    overflow-y: auto;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.odchovy__autocomplete-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    font-size: 14px;
    color: #1a1a2e;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.odchovy__autocomplete-item:hover {
    background-color: #fff7ed;
}

.odchovy__autocomplete-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.odchovy__autocomplete-detail {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}

.odchovy__autocomplete-name {
    font-weight: 600;
    font-size: 13px;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.odchovy__autocomplete-highlight {
    color: #e86c2e;
    font-weight: 700;
}

.odchovy__autocomplete-meta {
    font-size: 11px;
    color: #9ca3af;
}

.odchovy__autocomplete-own {
    font-size: 10px;
    font-weight: 600;
    color: #22c55e;
    background: #f0fdf4;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ========================================
   KARTA RODIČE (po výběru z autocomplete)
   ======================================== */

.odchovy__parent-card {
    margin-top: 8px;
}

.odchovy__parent-card-inner {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    position: relative;
    animation: parentCardIn 0.2s ease;
}

@keyframes parentCardIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.odchovy__parent-photo {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.odchovy__parent-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.odchovy__parent-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 24px;
}

.odchovy__parent-meta {
    font-size: 12px;
    color: #6b7280;
}

.odchovy__parent-titles {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #f59e0b;
}

.odchovy__parent-health {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #22c55e;
    font-weight: 500;
}

.odchovy__parent-station {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6b7280;
}

.odchovy__parent-pp {
    font-size: 10px;
    color: #9ca3af;
    font-family: monospace;
}

.odchovy__parent-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    transition: all 0.15s ease;
    color: #6b7280;
}

.odchovy__parent-remove:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Badge ověření */
.odchovy__parent-verify {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 4px;
    width: fit-content;
}

.odchovy__parent-verify--own {
    background-color: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.odchovy__parent-verify--pending {
    background-color: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

/* ========================================
   RODIČ NENALEZEN + RUČNÍ FORMULÁŘ
   ======================================== */

/* Odkaz "Není v systému?" */
.odchovy__parent-notfound {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #f97316;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
}

.odchovy__parent-notfound:hover {
    color: #ea580c;
    text-decoration: underline;
}

/* Ruční formulář */
.odchovy__parent-manual {
    margin-top: 8px;
    border: 2px solid #fed7aa;
    border-radius: 12px;
    background: #fffbf5;
    overflow: hidden;
    animation: parentManualIn 0.25s ease;
}

@keyframes parentManualIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.odchovy__parent-manual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff7ed;
    border-bottom: 1px solid #fed7aa;
    font-size: 13px;
    font-weight: 600;
    color: #ea580c;
}

.odchovy__parent-manual-header svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.odchovy__parent-manual-fields {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.odchovy__parent-manual-input {
    font-size: 14px !important;
    padding: 9px 12px !important;
}

/* Sekce pozvánky */
.odchovy__parent-manual-invite {
    margin: 0 14px 12px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1.5px dashed #d1d5db;
    border-radius: 10px;
}

.odchovy__parent-manual-invite-text {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 10px;
}

.odchovy__parent-manual-invite-text svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #9ca3af;
    margin-top: 1px;
}

.odchovy__parent-manual-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    color: #f97316;
    background: #fff7ed;
    border: 1.5px solid #fed7aa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.odchovy__parent-manual-copy svg {
    width: 14px;
    height: 14px;
}

.odchovy__parent-manual-copy:hover {
    background: #f97316;
    color: #ffffff;
    border-color: #f97316;
}

.odchovy__parent-manual-copy--copied {
    background: #22c55e !important;
    color: #ffffff !important;
    border-color: #22c55e !important;
}

/* Tlačítko "Potvrdit rodiče" */
.odchovy__parent-manual-actions {
    padding: 0 14px 12px;
}

.odchovy__parent-manual-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 3px 10px rgba(249, 115, 22, 0.25);
}

.odchovy__parent-manual-confirm svg {
    width: 18px;
    height: 18px;
}

.odchovy__parent-manual-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(249, 115, 22, 0.35);
}

/* Placeholder fotka rodiče (když nemá fotku) */
.odchovy__parent-photo--placeholder {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.odchovy__parent-photo--placeholder img {
    width: 32px;
    height: auto;
    opacity: 0.35;
}

/* Badge "Ručně zadaný" */
.odchovy__parent-verify--manual {
    background-color: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
}

.odchovy__parent-verify--manual a {
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}

.odchovy__parent-verify--manual a:hover {
    text-decoration: underline;
}

/* Karta potvrzeného ručního rodiče */
.odchovy__parent-manual-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #fafafa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    position: relative;
    animation: parentCardIn 0.2s ease;
}

.odchovy__parent-manual-card-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.odchovy__parent-manual-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.odchovy__parent-manual-card-initial {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.odchovy__parent-manual-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.odchovy__parent-manual-card-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 24px;
}

.odchovy__parent-manual-card-meta {
    font-size: 11px;
    color: #6b7280;
}

.odchovy__parent-manual-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    margin-top: 4px;
    width: fit-content;
    background: #fff7ed;
    color: #ea580c;
    border: 1px solid #fed7aa;
}

.odchovy__parent-manual-card-badge svg {
    width: 12px;
    height: 12px;
}

.odchovy__parent-manual-card-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.odchovy__parent-manual-card-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.odchovy__parent-manual-card-edit {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.15s;
}

.odchovy__parent-manual-card-edit svg {
    color: #9ca3af;
}

.odchovy__parent-manual-card-edit:hover {
    color: #f97316;
}

.odchovy__parent-manual-card-edit:hover svg {
    color: #f97316;
}

/* "Doplnit další údaje" odkaz */
.odchovy__parent-manual-more {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #f97316;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.15s;
}

.odchovy__parent-manual-more svg {
    width: 14px;
    height: 14px;
}

.odchovy__parent-manual-more:hover {
    color: #ea580c;
}

/* Rozšířená pole */
.odchovy__parent-manual-extra {
    padding: 0 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: parentManualIn 0.2s ease;
}

/* Upload fotky rodiče */
.odchovy__parent-manual-photo {
    margin-top: 2px;
}

.odchovy__parent-manual-photo-input {
    display: none;
}

.odchovy__parent-manual-photo-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    color: #6b7280;
    background: #ffffff;
    border: 1.5px dashed #d1d5db;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s;
}

.odchovy__parent-manual-photo-label svg {
    width: 18px;
    height: 18px;
    color: #9ca3af;
}

.odchovy__parent-manual-photo-label:hover {
    border-color: #f97316;
    color: #f97316;
}

.odchovy__parent-manual-photo-label:hover svg {
    color: #f97316;
}

.odchovy__parent-manual-photo-preview {
    position: relative;
    display: inline-block;
    margin-top: 8px;
}

.odchovy__parent-manual-photo-preview img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    object-fit: cover;
}

.odchovy__parent-manual-photo-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ef4444;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.odchovy__parent-manual-photo-remove svg {
    width: 10px;
    height: 10px;
}

/* Zpět na vyhledávání */
.odchovy__parent-manual-back {
    display: block;
    width: 100%;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    font-family: inherit;
    color: #9ca3af;
    background: transparent;
    border: none;
    border-top: 1px solid #fed7aa;
    cursor: pointer;
    transition: color 0.15s;
    text-align: center;
}

.odchovy__parent-manual-back:hover {
    color: #f97316;
}

/* Grid pro počty štěňat */
.odchovy__form-grid--counts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Toggle */
.odchovy__form-toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.odchovy__form-toggle {
    position: relative;
    width: 48px;
    height: 28px;
    display: inline-block;
    cursor: pointer;
}

.odchovy__form-toggle input {
    display: none;
}

.odchovy__form-toggle-track {
    position: absolute;
    inset: 0;
    background-color: #d1d5db;
    border-radius: 14px;
    transition: background-color 0.2s ease;
}

.odchovy__form-toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.odchovy__form-toggle input:checked + .odchovy__form-toggle-track {
    background-color: #f97316;
}

.odchovy__form-toggle input:checked + .odchovy__form-toggle-track::after {
    transform: translateX(20px);
}

.odchovy__form-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
}

/* Form actions */
.odchovy__form-actions {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    padding-top: 8px;
}

.odchovy__form-actions .odchovy__form-btn--publish {
    width: 100%;
    padding: 14px 20px;
    font-size: 16px;
    text-align: center;
}

.odchovy__form-actions .odchovy__form-btn--secondary {
    width: 100%;
    text-align: center;
}

.odchovy__form-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.odchovy__form-btn--secondary {
    background-color: #f3f4f6;
    color: #4b5563;
}

.odchovy__form-btn--secondary:hover {
    background-color: #e5e7eb;
}

.odchovy__form-btn--publish {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.odchovy__form-btn--publish:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* ========================================
   NOTIFIKACE - OVĚŘENÍ RODIČOVSTVÍ
   ======================================== */

.odchovy__verify-alert {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    background: #fffbeb;
    border: 2px solid #fde68a;
    border-radius: 14px;
    margin-bottom: 16px;
    position: relative;
    animation: verifyAlertIn 0.3s ease;
}

@keyframes verifyAlertIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.odchovy__verify-alert-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #fef3c7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
}

.odchovy__verify-alert-icon svg {
    width: 18px;
    height: 18px;
}

.odchovy__verify-alert-content {
    flex: 1;
    min-width: 0;
}

.odchovy__verify-alert-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 4px;
}

.odchovy__verify-alert-text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.5;
    margin-bottom: 10px;
}

.odchovy__verify-alert-actions {
    display: flex;
    gap: 8px;
}

.odchovy__verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.odchovy__verify-btn--confirm {
    background: #22c55e;
    color: #ffffff;
}

.odchovy__verify-btn--confirm:hover {
    background: #16a34a;
}

.odchovy__verify-btn--reject {
    background: #ffffff;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.odchovy__verify-btn--reject:hover {
    background: #fef2f2;
}

.odchovy__verify-alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #d97706;
    border-radius: 50%;
    transition: background-color 0.15s;
    padding: 0;
}

.odchovy__verify-alert-close:hover {
    background: #fef3c7;
}

/* ========================================
   TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .odchovy__add-btn {
        padding: 10px 20px;
        border-radius: 10px;
        width: auto;
        height: auto;
        gap: 8px;
    }

    .odchovy__add-btn-text {
        display: inline;
    }

    .dashboard__main .litter-card {
        width: calc(50% - 8px);
    }

    .litter-card__admin-actions {
        flex-direction: row;
    }

    /* Modal - tablet+ */
    .odchovy__dialog-overlay {
        padding: 20px;
    }

    .odchovy__modal {
        border-radius: 24px;
        padding: 36px;
        max-height: 90vh;
    }

    .odchovy__modal-title {
        font-size: 24px;
        padding-right: 0;
    }

    .odchovy__form-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        align-items: start;
    }

    .odchovy__form-grid--counts {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .odchovy__form-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .odchovy__form-actions .odchovy__form-btn--publish,
    .odchovy__form-actions .odchovy__form-btn--secondary {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
    }

}

/* ========================================
   DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .dashboard__main .litter-card {
        width: calc(25% - 12px);
    }
}

/* ========================================
   CUSTOM SELECT (cselect)
   Moderní dropdown místo nativních <select>
   Styl inspirovaný breed filtrem na stenata.php
   MOBILE FIRST
   ======================================== */

.cselect {
    position: relative;
    width: 100%;
}

.cselect__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    color: #1a1a2e;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, border-radius 0.15s ease;
    text-align: left;
    min-height: 46px;
    scroll-margin-top: 70px;
}

.cselect__trigger:hover {
    border-color: #fed7aa;
}

.cselect--open .cselect__trigger {
    border-color: #f97316;
    border-radius: 10px 10px 0 0;
}

.cselect--error .cselect__trigger {
    border-color: #ef4444;
}

.cselect__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.cselect__text--placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.cselect__arrow {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.cselect--open .cselect__arrow {
    transform: rotate(180deg);
    color: #f97316;
}

.cselect__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    background-color: #ffffff;
    border: 2px solid #f97316;
    border-top: 1px solid #fed7aa;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 50;
    scrollbar-width: thin;
    scrollbar-color: #e5e7eb transparent;
}

.cselect__dropdown::-webkit-scrollbar {
    width: 6px;
}

.cselect__dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.cselect__dropdown::-webkit-scrollbar-thumb {
    background-color: #d1d5db;
    border-radius: 3px;
}

.cselect--open .cselect__dropdown {
    display: block;
}

.cselect__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1a1a2e;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.cselect__option:hover {
    background-color: #fff7ed;
}

.cselect__option--selected {
    color: #ea580c;
    font-weight: 600;
    background-color: #fff7ed;
}

.cselect__option:last-child {
    border-radius: 0 0 10px 10px;
}

/* Barevná tečka (pro barvu obojku) */
.cselect__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Trigger s barevnou tečkou */
.cselect__trigger-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: none;
}

.cselect--has-dot .cselect__trigger-dot {
    display: block;
}

/* Date selects - 3 vedle sebe */
.odchovy__form-date-selects {
    display: flex;
    gap: 8px;
}

.odchovy__form-date-selects .cselect--day {
    flex: 0.8;
}

.odchovy__form-date-selects .cselect--month {
    flex: 1.4;
}

.odchovy__form-date-selects .cselect--year {
    flex: 1;
}

/* ========================================
   CUSTOM SELECT - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .cselect__trigger {
        padding: 10px 14px;
    }

    .cselect__option {
        padding: 10px 14px;
    }
}

/* ========================================
   DASHBOARD - MUJ UCET - BEM METODIKA
   MOBILE FIRST PRISTUP
   ======================================== */

/* ========================================
   BODY MODIFIKATOR PRO DASHBOARD
   ======================================== */

.body--dashboard {
    background-color: #f8f9fa;
}

.body--dashboard .footer {
    display: none;
}

/* ========================================
   DASHBOARD LAYOUT
   Zakladni layout pro mobil - sloupec
   ======================================== */

.dashboard {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 60px);
    width: 100%;
    padding-top: 60px; /* Kompenzace fixed hlavičky */
}

/* ========================================
   MOBILNI HEADER - VIDITELNY NA MOBILU
   ======================================== */

.dashboard__mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 60px;
    z-index: 90;
}

.dashboard__mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.dashboard__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #ede9fe;
    border-radius: 8px;
    cursor: pointer;
    color: #7c3aed;
    transition: all 0.2s ease;
}

.dashboard__menu-toggle:hover {
    background-color: #ddd6fe;
}

.dashboard__menu-toggle svg {
    width: 22px;
    height: 22px;
}

/* ========================================
   OVERLAY - TMAVE POZADI PRI OTEVRENEM MENU
   ======================================== */

.dashboard__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.dashboard__overlay--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   SIDEBAR - SKRYTE NA MOBILU, VYSOUVACI
   Cisty bily design inspirovany Saanvi
   ======================================== */

.dashboard__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 110;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
}

.dashboard__sidebar--open {
    transform: translateX(0);
}

/* Header sidebaru - cisty */
.dashboard__sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.dashboard__sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.3px;
}

.dashboard__sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: #f1f5f9;
    cursor: pointer;
    border-radius: 12px;
    color: #64748b;
    transition: all 0.2s ease;
}

.dashboard__sidebar-close:hover {
    background-color: #e2e8f0;
    color: #1e293b;
}

.dashboard__sidebar-close svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   NAVIGACE V SIDEBARU - CISTY BILY STYL
   ======================================== */

.dashboard__nav {
    flex: 1;
    padding: 16px 12px;
    position: relative;
    z-index: 5;
}

.dashboard__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dashboard__nav-item {
    margin-bottom: 4px;
}

.dashboard__nav-item--sub {
    margin-bottom: 0;
}

.dashboard__nav-item--sub .dashboard__nav-link {
    padding-left: 46px;
    font-size: 13px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.dashboard__nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    position: relative;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dashboard__nav-link:hover {
    background-color: #f8fafc;
    color: #1e293b;
}

.dashboard__nav-link--active {
    background-color: #f1f5f9;
    color: #667eea;
}

/* Ikony v navigaci */
.dashboard__nav-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #94a3b8;
}

.dashboard__nav-link:hover .dashboard__nav-icon {
    color: #64748b;
}

.dashboard__nav-link--active .dashboard__nav-icon {
    color: #667eea;
}

/* Badge - cervena pro notifikace */
.dashboard__nav-badge {
    margin-left: auto;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Počet položek v navigaci */
.dashboard__nav-count {
    margin-left: auto;
    background-color: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.dashboard__nav-link--active .dashboard__nav-count {
    background-color: #e0e7ff;
    color: #667eea;
}

/* Kategorie v navigaci */
.dashboard__nav-category {
    padding: 24px 16px 10px;
    border-top: 1px solid #f1f5f9;
    margin-top: 12px;
}

.dashboard__nav-category-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
}

/* ========================================
   CTA BOX V SIDEBARU - CISTY SVETLY STYL
   ======================================== */

.dashboard__cta {
    margin: 24px 12px 20px;
    padding: 24px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* Dekorativní prvky na pozadí */
.dashboard__cta::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 50%;
}

.dashboard__cta::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(102, 126, 234, 0.03);
    border-radius: 50%;
}

.dashboard__cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.dashboard__cta-icon svg {
    width: 28px;
    height: 28px;
}

.dashboard__cta-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    position: relative;
    z-index: 1;
}

.dashboard__cta-text {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 18px 0;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

.dashboard__cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.dashboard__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

.dashboard__cta-button svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   HLAVNI OBSAH - MOBILNI STYLY
   ======================================== */

.dashboard__main {
    flex: 1;
    padding: 16px;
    background-color: #f8f9fa;
}

/* ========================================
   UVITANI
   ======================================== */

.dashboard__welcome {
    margin-bottom: 20px;
}

.dashboard__welcome-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.dashboard__welcome-text {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* ========================================
   HLAVICKA STRANKY OBLIBENYCH
   ======================================== */

.dashboard__back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s ease;
}

.dashboard__back-link:hover {
    color: #7c3aed;
}

.dashboard__back-link svg {
    width: 16px;
    height: 16px;
}

.dashboard__page-header {
    margin-bottom: 20px;
}

.dashboard__page-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.dashboard__page-count {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ========================================
   FILTRY A RAZENI
   ======================================== */

.dashboard__filters {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.dashboard__filter-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.dashboard__filter-tabs::-webkit-scrollbar {
    display: none;
}

.dashboard__filter-tab {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    background-color: #f3f4f6;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.dashboard__filter-tab:hover {
    background-color: #ede9fe;
    color: #7c3aed;
}

.dashboard__filter-tab--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.dashboard__filter-tab--active:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.dashboard__sort {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard__sort-label {
    font-size: 13px;
    color: #6b7280;
}

.dashboard__sort-select {
    padding: 8px 32px 8px 12px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    transition: all 0.2s ease;
}

.dashboard__sort-select:hover {
    border-color: #c4b5fd;
}

.dashboard__sort-select:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* ========================================
   PRAZDNY STAV
   ======================================== */

.dashboard__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 16px;
    border: 2px dashed #e5e7eb;
}

.dashboard__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.dashboard__empty-icon svg {
    width: 100%;
    height: 100%;
}

.dashboard__empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 8px 0;
}

.dashboard__empty-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    max-width: 280px;
}

.dashboard__empty-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dashboard__empty-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.4);
}

/* ========================================
   FULL GRID - PRO STRANKU OBLIBENYCH
   ======================================== */

.dashboard__favorites-grid--full {
    grid-template-columns: repeat(2, 1fr);
}

/* ========================================
   ALERT - UPOZORNENI
   ======================================== */

.dashboard__alert {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard__alert-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #667eea;
}

.dashboard__alert-content {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-left: 8px;
}

.dashboard__alert-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0ff;
    border-radius: 12px;
    color: #667eea;
}

.dashboard__alert-icon svg {
    width: 22px;
    height: 22px;
}

.dashboard__alert-text {
    min-width: 0;
    flex: 1;
}

.dashboard__alert-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.dashboard__alert-meta {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.dashboard__alert-action {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #667eea;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.dashboard__alert-action:hover {
    background-color: #5a67d8;
}

/* ========================================
   SEKCE
   ======================================== */

.dashboard__section {
    margin-bottom: 24px;
}

.dashboard__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.dashboard__section-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    letter-spacing: -0.2px;
}

.dashboard__section-link {
    font-size: 12px;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
    padding: 6px 12px;
    background-color: #f0f0ff;
    border-radius: 6px;
}

.dashboard__section-link:hover {
    background-color: #667eea;
    color: #ffffff;
}

/* ========================================
   GRID PRO OBLIBENE - MOBILE FIRST
   Pouziva originalni karty puppy-card a card--grid
   ======================================== */

.dashboard__favorites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* Karta pro pridani dalsich */
.dashboard__card-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed #d1d5db;
    border-radius: 12px;
    background-color: transparent;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dashboard__card-add:hover {
    border-color: #a78bfa;
    background-color: #f5f3ff;
}

.dashboard__card-add-icon {
    font-size: 32px;
    color: #9ca3af;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.dashboard__card-add:hover .dashboard__card-add-icon {
    color: #7c3aed;
}

.dashboard__card-add-text {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.2s ease;
}

.dashboard__card-add:hover .dashboard__card-add-text {
    color: #7c3aed;
}

/* ========================================
   PUPPY CARD - KARTA STENETE
   Mobile First - Saanvi styl
   ======================================== */

.puppy-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.25s ease;
    border: 1px solid #f1f5f9;
}

.puppy-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.puppy-card__image {
    display: block;
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f8fafc;
}

.puppy-card__badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.puppy-card__badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.puppy-card__badge--status {
    background-color: #667eea;
    color: #ffffff;
}

.puppy-card__badge--nadeje {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.puppy-card__badge--mazlicek {
    background-color: #10b981;
}

.puppy-card__badge--available {
    background-color: #10b981;
    color: #ffffff;
}

.puppy-card__badge--reserved {
    background-color: #f59e0b;
    color: #ffffff;
}

.puppy-card__badge--champion {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
}

/* Srdíčko - oblíbené */
.puppy-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.puppy-card__favorite:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.puppy-card__favorite svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.puppy-card__favorite:hover svg {
    color: #ef4444;
}

.puppy-card__favorite--active svg {
    color: #ef4444;
    fill: #ef4444;
}

/* Obsah karty */
.puppy-card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.puppy-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.puppy-card__gender {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.puppy-card__gender svg {
    width: 100%;
    height: 100%;
}

.puppy-card__gender--male {
    color: #3b82f6;
}

.puppy-card__gender--female {
    color: #ec4899;
}

.puppy-card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__breed {
    font-size: 13px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__breed-name {
    color: #667eea;
}

.puppy-card__separator {
    margin: 0 4px;
    color: #d1d5db;
}

.puppy-card__variety {
    color: #9ca3af;
}

/* Povahový punc */
.puppy-card__temperament {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 8px;
    white-space: nowrap;
    margin-bottom: 6px;
    width: fit-content;
}

.puppy-card__temperament-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

img.puppy-card__temperament-icon {
    width: 12px;
    height: 12px;
}

.puppy-card__temperament-text {
    font-weight: 500;
}

/* Průzkumník - oranžová */
.puppy-card__temperament--pruzkumnik {
    background-color: #fff7ed;
    color: #ea580c;
    cursor: help;
}

.puppy-card__temperament--pruzkumnik img {
    filter: invert(39%) sepia(95%) saturate(1500%) hue-rotate(360deg) brightness(95%) contrast(95%);
}

/* Mazel - růžová */
.puppy-card__temperament--mazel {
    background-color: #fdf2f8;
    color: #db2777;
    cursor: help;
}

.puppy-card__temperament--mazel img {
    filter: invert(25%) sepia(90%) saturate(2000%) hue-rotate(315deg) brightness(90%) contrast(95%);
}

/* Pohodář - modrá */
.puppy-card__temperament--pohodar {
    background-color: #eff6ff;
    color: #2563eb;
    cursor: help;
}

.puppy-card__temperament--pohodar svg {
    color: #2563eb;
}

/* Snaživec - zelená */
.puppy-card__temperament--snazivec {
    background-color: #ecfdf5;
    color: #059669;
    cursor: help;
}

.puppy-card__temperament--snazivec img {
    filter: invert(40%) sepia(90%) saturate(800%) hue-rotate(120deg) brightness(90%) contrast(95%);
}

/* Pozorovatel - fialová */
.puppy-card__temperament--pozorovatel {
    background-color: #f5f3ff;
    color: #7c3aed;
    cursor: help;
}

.puppy-card__temperament--pozorovatel img {
    filter: invert(35%) sepia(80%) saturate(2000%) hue-rotate(245deg) brightness(90%) contrast(95%);
}

.puppy-card__details {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.puppy-card__cake-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    filter: invert(45%) sepia(70%) saturate(1500%) hue-rotate(210deg) brightness(90%) contrast(90%);
}

.puppy-card__age {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #64748b;
    background-color: #f8fafc;
    padding: 5px 10px;
    border-radius: 8px;
    white-space: nowrap;
}

.puppy-card__birthdate {
    color: #2c3e50;
    font-weight: 500;
}

.puppy-card__age-separator {
    color: #bdc3c7;
    font-size: 8px;
}

.puppy-card__age-value {
    color: #7f8c8d;
}

.puppy-card__station {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.puppy-card__station-icon {
    width: 14px;
    height: 14px;
    color: #667eea;
    flex-shrink: 0;
}

.puppy-card__station-link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-card__station-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

.puppy-card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.puppy-card__flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.puppy-card__country {
    font-weight: 500;
    color: #1e293b;
}

.puppy-card__place {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #94a3b8;
}

.puppy-card__place::before {
    content: "•";
    margin-right: 6px;
    color: #cbd5e1;
}

/* Tituly chovného jedince */
.puppy-card__titles {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px;
}

.puppy-card__title-badge {
    display: inline-block;
    padding: 2px 6px;
    font-size: 9px;
    font-weight: 600;
    color: #92400e;
    background-color: #fef3c7;
    border-radius: 4px;
}

/* ========================================
   SKUPINA PODLE DATA PRIDANI
   ======================================== */

/* Label s datem nad první kartou skupiny */
.favorites-card-wrapper {
    position: relative;
    padding-top: 28px;
}

.favorites-card-wrapper__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 12px;
    font-weight: 500;
    color: #9ca3af;
    white-space: nowrap;
}

/* Override pro breeding-dog-card v dashboard gridu */
.dashboard__favorites-grid .breeding-dog-card {
    width: 100%;
    flex: none;
}

.puppy-card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #667eea;
    background: #f0f0ff;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.puppy-card__button:hover {
    background: #667eea;
    color: #ffffff;
}

/* ========================================
   CARD--GRID - KARTA STANICE
   Mobile First - Saanvi styl
   ======================================== */

.card--grid {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
    border: 1px solid #f1f5f9;
}

.card--grid:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.card--grid .card__image {
    display: block;
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: #f8fafc;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    gap: 6px;
}

.card--grid .card__badge {
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
}

.card--grid .card__badge--puppies {
    background-color: #10b981;
    color: #ffffff;
}

.card--grid .card__badge--expected {
    background-color: #f59e0b;
    color: #ffffff;
}

.card--grid .card__badge--new {
    background-color: #ff6b6b;
    color: #ffffff;
}

.card--grid .card__badge--updated {
    background-color: #3498db;
    color: #ffffff;
}

/* Srdíčko */
.card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card__favorite:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}

.card__favorite svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
    transition: all 0.2s ease;
}

.card__favorite:hover svg {
    color: #ef4444;
}

.card__favorite--active svg {
    color: #ef4444;
    fill: #ef4444;
}

/* Obsah karty stanice */
.card--grid .card__content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card--grid .card__header {
    margin-bottom: 6px;
}

.card--grid .card__title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card--grid .card__rating {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 10px;
}

.card--grid .card__breed {
    font-size: 13px;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.card--grid .card__breed .breed-item {
    display: block;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.card--grid .card__breed .breed-item::before {
    content: '•';
    margin-right: 8px;
    color: #667eea;
}

.card--grid .card__breed .breed-item:hover {
    color: #5568d3;
    text-decoration: underline;
}

.card--grid .card__location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.card--grid .card__flag {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.card--grid .card__country {
    font-weight: 500;
    color: #1e293b;
}

.card--grid .card__place {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #94a3b8;
}

.card--grid .card__place::before {
    content: "•";
    margin-right: 6px;
    color: #cbd5e1;
}

.card--grid .card__button {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #667eea;
    background: #f0f0ff;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.card--grid .card__button:hover {
    background: #667eea;
    color: #ffffff;
}

/* ========================================
   RYCHLE AKCE - MOBILNI STYLY (SLOUPEC)
   ======================================== */

.dashboard__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard__action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dashboard__action:hover {
    background-color: #f8fafc;
    border-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dashboard__action-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0ff;
    border-radius: 12px;
    color: #667eea;
}

.dashboard__action-icon svg {
    width: 22px;
    height: 22px;
}

.dashboard__action-text {
    font-size: 15px;
    font-weight: 500;
    color: #1e293b;
}

.dashboard__action:hover .dashboard__action-text {
    color: #667eea;
}

/* ========================================
   TABLET (768px+) - MEDIA QUERY
   ======================================== */

@media (min-width: 768px) {
    .dashboard__main {
        padding: 28px 32px;
    }

    .dashboard__welcome {
        margin-bottom: 24px;
    }

    .dashboard__welcome-title {
        font-size: 24px;
    }

    .dashboard__welcome-text {
        font-size: 14px;
    }

    .dashboard__section {
        margin-bottom: 28px;
    }

    .dashboard__section-header {
        margin-bottom: 16px;
    }

    .dashboard__section-title {
        font-size: 18px;
    }

    .dashboard__section-link {
        font-size: 13px;
        padding: 8px 14px;
    }

    .dashboard__page-title {
        font-size: 24px;
    }

    /* Filtry v radku */
    .dashboard__filters {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    /* Prázdný stav */
    .dashboard__empty {
        padding: 64px 32px;
    }

    .dashboard__empty-icon {
        width: 80px;
        height: 80px;
    }

    .dashboard__empty-title {
        font-size: 20px;
    }

    .dashboard__empty-text {
        font-size: 15px;
        max-width: 360px;
    }

    /* Alert v radku */
    .dashboard__alert {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        padding: 18px 20px;
    }

    .dashboard__alert-content {
        flex: 1;
    }

    .dashboard__alert-action {
        width: auto;
        flex-shrink: 0;
    }

    /* 3 karty vedle sebe */
    .dashboard__favorites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Vetsi vyska obrazku */
    .puppy-card__image,
    .card--grid .card__image {
        height: 160px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 18px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 16px;
    }

    .puppy-card__breed,
    .card--grid .card__breed {
        font-size: 14px;
    }

    .puppy-card__button,
    .card--grid .card__button {
        padding: 12px 16px;
        font-size: 14px;
    }

    .puppy-card__location,
    .card--grid .card__location {
        font-size: 13px;
    }

    .puppy-card__flag,
    .card--grid .card__flag {
        width: 20px;
        height: 15px;
    }

    .puppy-card__age {
        font-size: 13px;
    }

    .puppy-card__cake-icon {
        width: 17px;
        height: 17px;
    }

    .puppy-card__station-icon {
        width: 15px;
        height: 15px;
    }

    .puppy-card__station-link {
        font-size: 14px;
    }

    .dashboard__card-add {
        min-height: 340px;
    }

    /* Rychle akce v radku */
    .dashboard__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dashboard__action {
        flex: 1;
        min-width: 200px;
    }
}

/* ========================================
   DESKTOP (1024px+) - SIDEBAR VIDITELNY
   ======================================== */

@media (min-width: 1024px) {
    /* Skryt mobilni prvky */
    .dashboard__mobile-header {
        display: none;
    }

    .dashboard__overlay {
        display: none;
    }

    /* Layout zmena na radek */
    .dashboard {
        flex-direction: row;
    }

    /* Sidebar - vzdy viditelny, cisty bily design */
    .dashboard__sidebar {
        position: static;
        top: auto;
        left: auto;
        width: 280px;
        height: auto;
        transform: none;
        border-right: 1px solid #f1f5f9;
        flex-shrink: 0;
        overflow-y: visible;
        box-shadow: none;
    }

    .dashboard__sidebar-close {
        display: none;
    }

    /* Navigace nema roztahovat prostor */
    .dashboard__nav {
        flex: none;
    }

    .dashboard__nav-link {
        padding: 14px 18px;
    }

    .dashboard__nav-icon {
        width: 22px;
        height: 22px;
    }

    /* Hlavni obsah */
    .dashboard__main {
        flex: 1;
        padding: 44px 56px;
        min-width: 0;
    }

    .dashboard__welcome-title {
        font-size: 32px;
    }

    .dashboard__section-title {
        font-size: 24px;
    }

    .dashboard__section-link {
        font-size: 14px;
        padding: 10px 20px;
    }

    .dashboard__favorites-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* Desktop velikosti */
    .puppy-card__image,
    .card--grid .card__image {
        height: 180px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 20px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 17px;
    }

    .puppy-card__breed,
    .card--grid .card__breed {
        font-size: 14px;
    }

    .puppy-card__location,
    .card--grid .card__location {
        font-size: 14px;
    }

    .puppy-card__flag,
    .card--grid .card__flag {
        width: 20px;
        height: 15px;
    }

    .puppy-card__age {
        font-size: 13px;
        padding: 6px 12px;
    }

    .puppy-card__cake-icon {
        width: 18px;
        height: 18px;
    }

    .puppy-card__station-icon {
        width: 16px;
        height: 16px;
    }

    .puppy-card__station-link {
        font-size: 14px;
    }

    .dashboard__card-add {
        min-height: 380px;
    }

    .dashboard__page-title {
        font-size: 30px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   VELKY DESKTOP (1400px+)
   ======================================== */

@media (min-width: 1400px) {
    .dashboard__sidebar {
        width: 300px;
    }

    .dashboard__main {
        padding: 48px 72px;
    }

    .dashboard__nav-link {
        padding: 16px 22px;
        font-size: 15px;
    }

    .dashboard__welcome-title {
        font-size: 36px;
    }

    .dashboard__page-title {
        font-size: 36px;
    }

    /* 4 karty vedle sebe */
    .dashboard__favorites-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .dashboard__favorites-grid--full {
        grid-template-columns: repeat(4, 1fr);
    }

    .puppy-card__image,
    .card--grid .card__image {
        height: 200px;
    }

    .puppy-card__content,
    .card--grid .card__content {
        padding: 20px;
    }

    .puppy-card__title,
    .card--grid .card__title {
        font-size: 17px;
    }

    .puppy-card__button,
    .card--grid .card__button {
        padding: 14px 18px;
        font-size: 14px;
    }
}

/* ========================================
   MOJE RECENZE - MOBILE FIRST
   ======================================== */

/* Statistiky */
.my-reviews__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.my-reviews__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-width: 100px;
}

.my-reviews__stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 4px;
}

.my-reviews__stat-number--published {
    color: #10b981;
}

.my-reviews__stat-number--pending {
    color: #f59e0b;
}

.my-reviews__stat-label {
    font-size: 12px;
    color: #6b7280;
}

/* Seznam recenzí */
.my-reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Karta recenze */
.my-review {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease;
}

.my-review:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.my-review--pending {
    border-left: 4px solid #f59e0b;
}

/* Hlavička recenze */
.my-review__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.my-review__station-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.my-review__station-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.my-review__station-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.my-review__station-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.2s ease;
}

.my-review__station-link:hover .my-review__station-name {
    color: #667eea;
}

.my-review__date {
    font-size: 12px;
    color: #9ca3af;
}

.my-review__header-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.my-review__rating {
    display: flex;
    gap: 2px;
}

.my-review__star {
    width: 16px;
    height: 16px;
}

.my-review__star--filled {
    fill: #f59e0b;
}

.my-review__star--empty {
    fill: #d1d5db;
}

.my-review__status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.my-review__status svg {
    width: 12px;
    height: 12px;
}

.my-review__status--pending {
    background-color: #fef3c7;
    color: #d97706;
}

/* Obsah recenze */
.my-review__content {
    margin-bottom: 12px;
}

.my-review__text {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
}

/* Odkaz na psa */
.my-review__dog {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
}

.my-review__dog-icon {
    width: 16px;
    height: 16px;
    fill: #667eea;
    flex-shrink: 0;
}

.my-review__dog-link {
    font-size: 13px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.my-review__dog-link:hover {
    color: #5a67d8;
    text-decoration: underline;
}

/* Odpověď chovatele */
.my-review__reply {
    margin-top: 12px;
    padding: 12px;
    background-color: #f8f5ff;
    border-left: 3px solid #8b5cf6;
    border-radius: 0 8px 8px 0;
}

.my-review__reply-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    flex-wrap: wrap;
    gap: 6px;
}

.my-review__reply-label {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
}

.my-review__reply-date {
    font-size: 11px;
    color: #9ca3af;
}

.my-review__reply-text {
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    margin: 0;
}

/* Akce */
.my-review__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.my-review__action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    font-family: inherit;
}

.my-review__action svg {
    width: 14px;
    height: 14px;
}

.my-review__action--view {
    background-color: #f3f4f6;
    color: #4b5563;
}

.my-review__action--view:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.my-review__action--edit {
    background-color: #eff6ff;
    color: #3b82f6;
}

.my-review__action--edit:hover {
    background-color: #dbeafe;
    color: #2563eb;
}

.my-review__action--delete {
    background-color: #fef2f2;
    color: #ef4444;
}

.my-review__action--delete:hover {
    background-color: #fee2e2;
    color: #dc2626;
}

/* ========================================
   MOJE RECENZE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .my-reviews__stats {
        gap: 16px;
    }

    .my-reviews__stat {
        padding: 20px 32px;
    }

    .my-reviews__stat-number {
        font-size: 32px;
    }

    .my-reviews__stat-label {
        font-size: 13px;
    }

    .my-review {
        padding: 20px;
    }

    .my-review__header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .my-review__header-right {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .my-review__station-image {
        width: 56px;
        height: 56px;
    }

    .my-review__station-name {
        font-size: 16px;
    }

    .my-review__text {
        font-size: 15px;
    }

    .my-review__star {
        width: 18px;
        height: 18px;
    }
}

/* ========================================
   MOJE RECENZE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .my-reviews__stats {
        gap: 20px;
        margin-bottom: 32px;
    }

    .my-reviews__stat {
        padding: 24px 40px;
    }

    .my-reviews__stat-number {
        font-size: 36px;
    }

    .my-reviews__stat-label {
        font-size: 14px;
    }

    .my-reviews__list {
        gap: 20px;
    }

    .my-review {
        padding: 24px;
    }

    .my-review__station-image {
        width: 60px;
        height: 60px;
    }

    .my-review__station-name {
        font-size: 17px;
    }

    .my-review__date {
        font-size: 13px;
    }

    .my-review__text {
        font-size: 15px;
    }

    .my-review__reply {
        padding: 16px;
    }

    .my-review__reply-text {
        font-size: 14px;
    }

    .my-review__action {
        padding: 8px 14px;
        font-size: 13px;
    }

    .my-review__action svg {
        width: 15px;
        height: 15px;
    }
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - MOBILE FIRST
   ======================================== */

/* Meta řádek pod nadpisem */
.dashboard__page-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    margin-bottom: 8px;
}

.dashboard__page-count {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 400;
}

/* Tlačítko smazat vše - moderní styl */
.history__clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
}

.history__clear-btn:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    transform: translateY(-1px);
}

.history__clear-btn svg {
    width: 14px;
    height: 14px;
}

/* Filtry */
.history__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.history__filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background-color: #f3f4f6;
    color: #4b5563;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.history__filter:hover {
    background-color: #e5e7eb;
    color: #1f2937;
}

.history__filter--active {
    background-color: #667eea;
    color: #ffffff;
}

.history__filter--active:hover {
    background-color: #5a67d8;
    color: #ffffff;
}

.history__filter svg {
    width: 14px;
    height: 14px;
}

.history__filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 600;
}

.history__filter--active .history__filter-count {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Prázdný stav */
.history__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.history__empty-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.history__empty-icon svg {
    width: 100%;
    height: 100%;
}

.history__empty-title {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin: 0 0 8px 0;
}

.history__empty-text {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* Seznam historie */
.history__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Skupina podle data */
.history__group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history__group-title {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.history__items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Položka historie */
.history__item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    overflow: hidden;
}

.history__item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.history__item-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
}

/* Obrázek */
.history__item-image {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.history__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history__item-type {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.history__item-type svg {
    width: 12px;
    height: 12px;
}

.history__item-type--station {
    color: #667eea;
}

.history__item-type--puppy {
    color: #f59e0b;
}

.history__item-type--breeding {
    color: #10b981;
}

/* Info */
.history__item-info {
    flex: 1;
    min-width: 0;
}

.history__item-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.history__item:hover .history__item-name {
    color: #667eea;
}

.history__item-breed {
    font-size: 13px;
    color: #6b7280;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.history__item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #9ca3af;
}

.history__item-location,
.history__item-station {
    display: flex;
    align-items: center;
    gap: 4px;
}

.history__item-location svg {
    width: 12px;
    height: 12px;
}

.history__item-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #f59e0b;
}

.history__item-rating svg {
    width: 12px;
    height: 12px;
}

.history__item-age {
    color: #6b7280;
}

.history__item-titles {
    color: #10b981;
    font-weight: 500;
}

.history__item-gender {
    font-weight: 600;
}

.history__item-gender--male {
    color: #3b82f6;
}

.history__item-gender--female {
    color: #ec4899;
}

/* Pravá část */
.history__item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.history__item-time {
    font-size: 12px;
    color: #9ca3af;
    white-space: nowrap;
}

.history__item-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.history__item-remove:hover {
    background-color: #fef2f2;
    color: #ef4444;
}

.history__item-remove svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .history__filters {
        gap: 10px;
        margin-bottom: 28px;
    }

    .history__filter {
        padding: 10px 18px;
        font-size: 14px;
    }

    .history__filter svg {
        width: 16px;
        height: 16px;
    }

    .history__list {
        gap: 28px;
    }

    .history__group-title {
        font-size: 14px;
    }

    .history__items {
        gap: 10px;
    }

    .history__item-link {
        padding: 16px;
        gap: 16px;
    }

    .history__item-image {
        width: 64px;
        height: 64px;
    }

    .history__item-type {
        width: 26px;
        height: 26px;
    }

    .history__item-type svg {
        width: 14px;
        height: 14px;
    }

    .history__item-name {
        font-size: 16px;
    }

    .history__item-breed {
        font-size: 14px;
    }

    .history__item-meta {
        font-size: 13px;
    }

    .history__item-time {
        font-size: 13px;
    }

    .history__item-remove {
        width: 32px;
        height: 32px;
    }
}

/* ========================================
   HISTORIE PROHLÍŽENÍ - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .history__filters {
        gap: 12px;
        margin-bottom: 32px;
    }

    .history__list {
        gap: 32px;
    }

    .history__items {
        gap: 12px;
    }

    .history__item-link {
        padding: 18px 20px;
    }

    .history__item-image {
        width: 72px;
        height: 72px;
        border-radius: 12px;
    }

    .history__item-type {
        width: 28px;
        height: 28px;
        bottom: -5px;
        right: -5px;
    }

    .history__item-type svg {
        width: 15px;
        height: 15px;
    }

    .history__item-name {
        font-size: 17px;
    }

    .history__item-breed {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .history__item-meta {
        font-size: 13px;
        gap: 12px;
    }

    .history__item-time {
        font-size: 13px;
    }
}
