/* ===== MOBILE FIRST - Základní styly ===== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5f2d;
    --primary-light: #97c05c;
    --secondary-color: #ff6b35;
    --bg-color: #f5f5f5;
    --text-color: #333;
    --border-color: #ddd;
    --white: #fff;
    --gray-light: #f9f9f9;
    --gray-medium: #ccc;
    --gray-dark: #666;
    --reserved-color: #e74c3c;
    --closed-color: #95a5a6;
    --available-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 10px;
    padding-bottom: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.logo-link {
    display: inline-block;
    transition: opacity 0.3s, transform 0.3s;
}

.logo-link:hover {
    opacity: 0.8;
    transform: scale(1.02);
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ===== STICKY HEADER (NAVIGACE + LIŠTA DNŮ) ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 101;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ===== NAVIGACE KALENDÁŘE ===== */
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
}

/* ===== LIŠTA DNŮ ===== */
.days-bar {
    background: var(--white);
    border-bottom: 2px solid var(--primary-color);
}

.days-scroll {
    display: flex;
    overflow-x: auto;
    padding: 10px 15px;
    gap: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-light);
    scroll-behavior: auto;
}

.days-scroll::-webkit-scrollbar {
    height: 6px;
}

.days-scroll::-webkit-scrollbar-track {
    background: var(--gray-light);
}

.days-scroll::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.day-link {
    min-width: 50px;
    padding: 8px 10px;
    text-align: center;
    background: var(--gray-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day-shortcut {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--gray-dark);
    text-transform: lowercase;
}

.day-number {
    font-size: 0.95rem;
    font-weight: 600;
}

.day-link:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-2px);
}

.day-link.active {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Promo badge na denních odkazech */
.day-link.has-promo {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    border-color: #FF8C00;
    position: relative;
}

.day-link.has-promo:hover {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
}

.promo-badge {
    font-size: 0.55rem;
    font-weight: 700;
    color: #FF8C00;
    background: rgba(255, 140, 0, 0.15);
    padding: 2px 4px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

.day-link.has-promo:hover .promo-badge {
    color: white;
    background: rgba(255, 255, 255, 0.3);
}

.current-month {
    font-size: 1.2rem;
    color: var(--primary-color);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-btn {
    padding: 8px 15px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.85rem;
    transition: background 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-btn:hover {
    background: var(--primary-light);
}

.nav-prev {
    order: 1;
}

.nav-next {
    order: 3;
}

.current-month {
    order: 2;
}

.nav-btn.disabled {
    background: var(--gray-medium);
    color: var(--gray-dark);
    cursor: not-allowed;
    opacity: 0.5;
}

.nav-btn.disabled:hover {
    background: var(--gray-medium);
    transform: none;
}

/* ===== BOTTOM BAR - FOOTER ===== */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 99;
}

.footer {
    padding: 8px 15px;
    background: var(--gray-light);
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 0.7rem;
    color: var(--gray-dark);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* ===== ŠIPKA NAHORU ===== */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 98;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* ===== LIST VIEW ===== */
.calendar-list {
    padding: 20px;
}

.list-day {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.list-day:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.list-day.today {
    border-color: var(--secondary-color);
    border-width: 3px;
}

.list-day.closed {
    opacity: 0.6;
}

.list-day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--gray-light);
    border-bottom: 2px solid var(--border-color);
}

.list-date {
    display: flex;
    align-items: baseline;
    font-weight: bold;
    color: var(--primary-color);
}

.date-number {
    font-size: 2rem;
    line-height: 1;
}

.date-month {
    font-size: 1.2rem;
    margin-left: 2px;
}

.list-day-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-color);
}

.day-promo-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF8C00;
    background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
    padding: 4px 10px;
    border-radius: 12px;
    margin-left: 10px;
    border: 1px solid #FF8C00;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: promo-glow 2s ease-in-out infinite;
}

@keyframes promo-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 140, 0, 0.5);
    }
}

.list-day-body {
    padding: 20px;
}

.closed-message,
.no-slots-message {
    text-align: center;
    padding: 20px;
    color: var(--gray-dark);
    font-style: italic;
    font-size: 1.1rem;
}

/* ===== VOLNÉ TERMÍNY - KARTY ===== */
.available-slots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slot-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--gray-light);
    border: 2px solid var(--available-color);
    border-radius: 8px;
    gap: 15px;
    transition: all 0.3s;
}

.slot-card:hover {
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.2);
    transform: translateY(-2px);
}

.slot-info {
    flex: 1;
}

.slot-date {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 3px;
}

.slot-time {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.slot-details {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.slot-duration::before {
    content: "⏱️ ";
}

.slot-price {
    font-weight: 600;
    color: var(--secondary-color);
}

.slot-price::before {
    content: "💰 ";
}

.btn-reserve {
    padding: 12px 24px;
    background: var(--available-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-reserve:hover {
    background: #229954;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ===== ADMIN REŽIM - REZERVACE ===== */
.admin-reservations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reservation-card {
    padding: 15px;
    background: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.reservation-card.confirmed {
    border-left-color: var(--available-color);
    background: #f0f9f4;
}

.reservation-card.pending {
    border-left-color: #ffa500;
    background: #fff8e1;
}

.reservation-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.reservation-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.reservation-time strong {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.reservation-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--white);
}

.reservation-card.confirmed .reservation-status {
    color: var(--available-color);
}

.reservation-card.pending .reservation-status {
    color: #ffa500;
}

.reservation-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-row {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.4;
}

.detail-row strong {
    font-size: 1.05rem;
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 767px) {
    body {
        padding-bottom: 70px;
    }
    
    .calendar-nav {
        padding: 8px;
        gap: 6px;
    }
    
    .current-month {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
    }
    
    .nav-btn {
        font-size: 0.7rem;
        padding: 6px 8px;
    }
    
    .scroll-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .days-scroll {
        padding: 8px 10px;
        gap: 6px;
    }
    
    .day-link {
        min-width: 45px;
        padding: 6px 8px;
    }
    
    .day-shortcut {
        font-size: 0.65rem;
    }
    
    .day-number {
        font-size: 0.85rem;
    }
    
    .calendar-list {
        padding: 10px;
    }
    
    .list-day-header {
        padding: 10px 15px;
    }
    
    .date-number {
        font-size: 1.5rem;
    }
    
    .date-month {
        font-size: 1rem;
    }
    
    .list-day-name {
        font-size: 1.1rem;
    }

    .day-promo-label {
        font-size: 0.65rem;
        padding: 3px 8px;
        margin-left: 6px;
        display: inline-block;
        margin-top: 5px;
    }

    .promo-badge {
        font-size: 0.5rem;
        padding: 1px 3px;
    }

    .list-day-body {
        padding: 15px;
    }
    
    .available-slots {
        gap: 12px;
    }
    
    .slot-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px;
        gap: 12px;
    }
    
    .slot-date {
        font-size: 0.85rem;
    }
    
    .slot-time {
        font-size: 1.2rem;
    }
    
    .reservation-time strong {
        font-size: 1.1rem;
    }
    
    .detail-row {
        font-size: 0.85rem;
    }
    
    .slot-details {
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .btn-reserve {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 6px 10px;
    }
    
    .footer p {
        font-size: 0.65rem;
    }
}

/* ===== TABLET - 768px+ ===== */
@media (min-width: 768px) {
    body {
        padding: 20px;
        padding-bottom: 80px;
    }
    
    .scroll-to-top {
        bottom: 90px;
        right: 25px;
    }
    
    .days-scroll {
        padding: 12px 20px;
        gap: 10px;
    }
    
    .day-link {
        min-width: 55px;
        padding: 10px 12px;
    }
    
    .day-shortcut {
        font-size: 0.75rem;
    }
    
    .day-number {
        font-size: 1rem;
    }
    
    .header {
        padding: 40px 20px;
    }
    
    .logo {
        max-width: 400px;
    }
    
    .current-month {
        flex: 0 1 auto;
        order: 0;
        font-size: 1.5rem;
    }
    
    .nav-btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    
    .nav-prev {
        order: 0;
    }
    
    .nav-next {
        order: 0;
    }
    
    .slot-card {
        padding: 18px 20px;
    }
    
    .slot-date {
        font-size: 0.95rem;
    }
    
    .slot-time {
        font-size: 1.6rem;
    }
    
    .slot-details {
        font-size: 1rem;
    }
    
    .btn-reserve {
        padding: 14px 28px;
        font-size: 1.05rem;
    }
    
    .footer {
        padding: 10px 15px;
    }
    
    .footer p {
        font-size: 0.75rem;
    }
}

/* ===== DESKTOP - 1024px+ ===== */
@media (min-width: 1024px) {
    .header {
        padding: 50px 20px;
    }
    
    .slot-card {
        padding: 20px 25px;
    }
    
    .slot-date {
        font-size: 1rem;
    }
    
    .slot-time {
        font-size: 1.7rem;
    }
    
    .btn-reserve {
        padding: 15px 32px;
    }
}

/* ===== PROMO AKCE ===== */
:root {
    --promo-christmas: linear-gradient(135deg, #fff8f0 0%, #fff3e6 50%, #ffe8d6 100%);
    --promo-summer: linear-gradient(135deg, #FFA726 0%, #FFB74D 100%);
    --promo-spring: linear-gradient(135deg, #66BB6A 0%, #81C784 100%);
    --promo-newyear: linear-gradient(135deg, #5C6BC0 0%, #7986CB 100%);
    --promo-special: linear-gradient(135deg, #AB47BC 0%, #BA68C8 100%);
    --promo-default: linear-gradient(135deg, #607D8B 0%, #78909C 100%);
}

.slot-promo {
    position: relative;
    border: 2px solid transparent;
    animation: promo-glow 2s ease-in-out infinite;
}

@keyframes promo-glow {
    0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
    50% { box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
}

/* Speciální vánoční svícení */
.promo-christmas.slot-promo {
    animation: christmas-glow 3s ease-in-out infinite;
}

@keyframes christmas-glow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 140, 0, 0.12), 0 2px 8px rgba(255, 140, 0, 0.08);
    }
    50% {
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.2), 0 2px 12px rgba(255, 140, 0, 0.15);
    }
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 10;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Speciální vánoční badge */
.promo-christmas .promo-badge {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 50%, #FF8C00 100%);
    color: white;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
    animation: christmas-badge-glow 2s ease-in-out infinite;
}

@keyframes christmas-badge-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 16px rgba(255, 140, 0, 0.6), 0 0 12px rgba(255, 215, 0, 0.5);
        transform: scale(1.05);
    }
}

.slot-price-promo {
    color: #c62828;
    font-weight: bold;
    font-size: 1.15em;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Specifické styly pro různé typy promo akcí */
.promo-christmas {
    background: var(--promo-christmas);
    color: #8B4000;
    position: relative;
    overflow: hidden;
    border: 2px solid #FF8C00;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.15);
}

/* Vánoční dekorace - jemné hvězdičky */
.promo-christmas::before {
    content: '✨';
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.promo-christmas::after {
    content: '✨';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: sparkle-twinkle 2s ease-in-out infinite 1s;
}

/* Vánoční slot-info styling */
.promo-christmas .slot-info {
    position: relative;
}

/* Sněhové vločky jako pozadí */
.promo-christmas .slot-info::before {
    content: '❄';
    position: absolute;
    bottom: 5px;
    left: 15px;
    font-size: 2rem;
    color: #FF8C00;
    opacity: 0.08;
    z-index: 0;
}

.promo-christmas .slot-info::after {
    content: '❄';
    position: absolute;
    bottom: 5px;
    right: 15px;
    font-size: 2rem;
    color: #FF8C00;
    opacity: 0.08;
    z-index: 0;
}

@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.promo-christmas .slot-date,
.promo-christmas .slot-time,
.promo-christmas .slot-duration {
    color: #8B4000;
    position: relative;
    z-index: 1;
}

.promo-christmas .slot-time {
    color: #FF8C00;
    font-weight: 600;
}

.promo-christmas .slot-price {
    color: #FF8C00;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.promo-summer {
    background: var(--promo-summer);
    color: white;
}

.promo-summer .slot-date,
.promo-summer .slot-time,
.promo-summer .slot-duration {
    color: rgba(255,255,255,0.9);
}

.promo-summer .slot-price {
    color: white;
    font-weight: bold;
}

.promo-spring {
    background: var(--promo-spring);
    color: white;
}

.promo-spring .slot-date,
.promo-spring .slot-time,
.promo-spring .slot-duration {
    color: rgba(255,255,255,0.9);
}

.promo-spring .slot-price {
    color: white;
    font-weight: bold;
}

.promo-newyear {
    background: var(--promo-newyear);
    color: white;
}

.promo-newyear .slot-date,
.promo-newyear .slot-time,
.promo-newyear .slot-duration {
    color: rgba(255,255,255,0.9);
}

.promo-newyear .slot-price {
    color: white;
    font-weight: bold;
}

.promo-special {
    background: var(--promo-special);
    color: white;
}

.promo-special .slot-date,
.promo-special .slot-time,
.promo-special .slot-duration {
    color: rgba(255,255,255,0.9);
}

.promo-special .slot-price {
    color: white;
    font-weight: bold;
}

.promo-default {
    background: var(--promo-default);
    color: white;
}

.promo-default .slot-date,
.promo-default .slot-time,
.promo-default .slot-duration {
    color: rgba(255,255,255,0.9);
}

.promo-default .slot-price {
    color: white;
    font-weight: bold;
}

/* Button styling for promo cards */
.slot-promo .btn-reserve {
    background: rgba(255,255,255,0.95);
    color: #333;
    border: 2px solid rgba(255,255,255,0.5);
    font-weight: bold;
}

.slot-promo .btn-reserve:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Speciální vánoční tlačítko */
.promo-christmas .btn-reserve {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    color: white;
    border: 2px solid #FF8C00;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.3);
}

.promo-christmas .btn-reserve:hover {
    background: linear-gradient(135deg, #E67E00 0%, #FF8C00 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.4), 0 0 12px rgba(255, 165, 0, 0.3);
    border-color: #E67E00;
}

/* ===== ADMIN TOOLBAR ===== */
.admin-toolbar {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-info {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
}

.admin-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.view-mode-toggle {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 4px;
    border-radius: 8px;
}

.toggle-btn {
    flex: 1;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.toggle-btn:hover {
    background: rgba(255,255,255,0.2);
}

.toggle-btn.active {
    background: white;
    color: #4CAF50;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-admin-link {
    display: inline-block;
    padding: 10px 16px;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-admin-link:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

/* Tablet a větší */
@media (min-width: 768px) {
    .admin-toolbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }

    .admin-actions {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .view-mode-toggle {
        width: auto;
    }

    .toggle-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .btn-admin-link {
        padding: 8px 20px;
        width: auto;
    }
}