﻿/* General Styles */
::-webkit-scrollbar {
	width: 14px
}

::-webkit-scrollbar-track {
	background: #f9f9f9;
    border: 1px solid #ddd
}

::-webkit-scrollbar-thumb {
	background-color: #4CAF50
}

::-webkit-scrollbar-thumb:hover {
	background-color: #45a049
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

/* Styl pro mobilní zařízení */
@media (max-width: 767px) {
    .header {
        display: flex;
        justify-content: end;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #ddd;
        position: relative;
    }
}

.header h1 {
    margin: 0;
}

.header .back-to-shopping,
.header .cart-button {
    position: absolute;
    left: 20px;
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.header .back-to-shopping:hover,
.header .cart-button:hover {
    background-color: #45a049;
}

/* CSS pro popup okno */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.popup_order {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
}

.popup_order h2 {
    margin-top: 0;
}

.popup_order button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.popup_order button:hover {
    background: #45a049;
}

/* Main Container */
.cart-container {
    display: flex;
    flex-direction: column;
    margin: 20px;
}

/* Product Cards */
.product-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Images in Product Cards */
.product-card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Product Info */
.product-info {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

/* Product Header */
.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.product-name {
    font-weight: bold;
    font-size: 1.2em; /* Larger font size for the name */
    width: 80%; /* Takes up 4/5 of the space */
    text-align: left;
    margin: 0; /* Remove default margin */
    line-height: 1.2em; /* Line height for each line */
    min-height: 2.4em; /* Space for two lines */
    overflow: hidden; /* Prevents overflowing text */
    display: -webkit-box; /* Makes it compatible with line clamping */
    -webkit-line-clamp: 2; /* Limits to 2 lines */
    -webkit-box-orient: vertical; /* Sets box orientation */
}

.product-id {
    color: #888; /* Gray color */
    font-size: 0.8em; /* Smaller font size */
    width: 20%; /* Takes up 1/5 of the space */
    text-align: right;
    margin: 0; /* Remove default margin */
}

.product-dimensions {
    margin-top: 10px; /* Adjust the margin as needed */
    text-align: center;
    color: #4CAF50;
    font-size: 16px;
    font-weight: bold;
}

/* Product Bottom */
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

/* Product Price */
.product-price {
    font-size: 16px; /* Larger font size for the price */
    font-weight: bold;
    margin: 0 20px 0 0;
    padding: 10px 20px; /* Add padding for visual appearance */
    border: 2px solid #4CAF50; /* Border color */
    border-radius: 4px; /* Rounded corners */
    background-color: transparent; /* No fill color */
    color: #4CAF50; /* Text color matches the border */
    display: inline-block; /* Keep the price and button in the same row */
}

/* Add to Cart Button */
.add-to-cart {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.add-to-cart:hover {
    background-color: #45a049;
}


/* Product Grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 columns */
    gap: 16px; /* Gap between items */
    padding: 16px;
}

/* CSS pro popup notifikaci */
.notification-index {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #e0ffe0;
    padding: 15px;
    border: 1px solid #4CAF50;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: none; /* Skryté ve výchozím stavu */
    z-index: 1000;
    color: #4CAF50;
    text-align: center; /* Zarovnání textu na střed */
}

.notification-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffe0e0;
    padding: 15px;
    border: 1px solid red;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    display: none; /* Skryté ve výchozím stavu */
    z-index: 1000;
    color: red;
    text-align: center; /* Zarovnání textu na střed */
}

/* Responsive Adjustments for Product Grid */
@media (max-width: 1724px) {
    .product-container {
        grid-template-columns: repeat(4, 1fr); /* 4 columns for smaller screens */
    }
}

@media (max-width: 1382px) {
    .product-container {
        grid-template-columns: repeat(3, 1fr); /* 4 columns for smaller screens */
    }
}

@media (max-width: 1040px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* 3 columns for smaller screens */
    }
}

@media (max-width: 699px) {
    .product-container {
        grid-template-columns: repeat(1, 1fr); /* 2 columns for very small screens */
    }
}

@media (max-width: 400px) {
    .product-container {
        grid-template-columns: 1fr; /* 1 column for extra small screens */
    }
    
}

/* Cart Item Styles */
.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center; /* Vertically center the content */
    margin-bottom: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: row; /* Default horizontal layout */
}

/* Flexbox properties for individual item divs */
.item-first {
    flex: 8;
}

.item-second {
    flex: 4;
}

.item-third {
    flex: 1;
    display: flex;
    justify-content: right; /* Make sure they take equal space */
}

.item-first {
    display: flex;
    align-items: center; /* Center vertically within its container */
}

/* Flexbox for .item-second */
.item-second {
    display: flex;
    flex-direction: row; /* Ensure child elements inside item-second are horizontal */
    align-items: center;
    justify-content: space-between;
}

/* Stack items vertically on mobile */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start of the container */
    }

    .item-first,
    .item-second,
    .item-third {
        width: 100%; /* Full width for each item */
        text-align: left; /* Align text to the left */
    }

    .item-second {
        display: flex;
        flex-direction: row; /* Ensure inner elements are still horizontal */
        margin-top: 10px; /* Add margin to separate from other items */
    }

    .item-price,
    .item-total-price {
        margin: 10px 0; /* Vertical margin for better spacing */
    }

    .delete-button {
        width: 100%; /* Full width for delete button */
        margin-top: 10px; /* Add margin to the top for separation */
        text-align: center; /* Center text or icon in the button */
        margin-left: 0; /* Remove left margin on mobile */
    }
}

/* Cart Item Child Elements Styles */
.cart-item .item-name {
    font-size: 16px;
    font-weight: 500;
}

.cart-item input[type="number"] {
    width: 60px;
    text-align: center;
    margin-left: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
}

.quantity-button {
    background: #4CAF50;
    border: none;
    padding: 8px;
    cursor: pointer;
    font-size: 18px;
    width: 30px;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.quantity-button:hover {
    background-color: #45a049;
}

.quantity-controls .item-quantity {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    padding: 5px;
    margin: 0 10px;
    text-align: center;
}

.item-price,
.item-total-price {
    margin: 0 25px;
}

.delete-button {
    background: none;
    border: 2px solid red;
    color: red;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px; /* Default margin-left */
    line-height: 0;
}

.delete-button:hover {
    background-color: red;
    color: white;
    border-color: red;
}

.delete-button i {
    font-size: 16px;
}

/* Two Columns Layout for Cart Details */
.cart-details {
    display: flex;
    gap: 20px;
}

.cart-left,
.cart-right {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.cart-left {
    flex: 1;
}

.cart-right {
    flex: 2;
}

.cart-left h3,
.cart-right h3 {
    margin-top: 0;
}

.option-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#shipping-options {
    padding-bottom: 60px;
}

.option {
    display: flex;
    align-items: center;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.option input[type="radio"] {
    display: none;
}

.option img {
    height: 50px;
    width: auto;
    margin-right: 10px;
}

.option .price {
    margin-left: auto;
}

.option.selected {
    border-color: #4CAF50;
    background: #e0ffe0;
}

.option.selected::after {
    content: '✔';
    color: #4CAF50;
    font-size: 20px;
    position: absolute;
    right: 10px;
    top: 10px;
}

.option-container label {
    margin: 0;
}

.cart-left i,
.cart-right i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Form Styles */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 0 0;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #45a049;
}

label {
    margin: 0;
    display: flex;
    align-items: center;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: calc(100% - 1em);
  padding: 0.5em;
    margin: 5px 0 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    
}

#total-price {
    font-size: 20px;
    font-weight: bold;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 25px; /* Space between items */
}

.checkbox-container input[type="checkbox"] {
    appearance: none; /* Remove default styling */
    width: 30px; /* Width of checkbox */
    height: 30px; /* Height of checkbox */
    border: 2px solid #4CAF50; /* Border color */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    margin-right: 10px; /* Space between checkbox and text */
    outline: none; /* Remove outline */
    position: relative; /* For positioning checkmark */
}

.checkbox-container input[type="checkbox"]:checked::before {
    content: '\2713'; /* Checkmark symbol */
    font-size: 20px; /* Size of checkmark */
    color: #4CAF50; /* Checkmark color */
    font-weight: bold;
    position: absolute; /* Positioning checkmark */
    top: 50%; /* Vertical center */
    left: 50%; /* Horizontal center */
    transform: translate(-50%, -50%); /* Centering */
}

.checkbox-container label {
    font-size: 16px; /* Font size */
    color: #333; /* Text color */
    cursor: pointer; /* Pointer cursor */
}

/* Business Info Container */
#business-info {
    margin-bottom: 25px; /* Margin below container */
    margin-top: -15px; /* Margin above container */
    padding: 50px; /* Padding inside container */
    border: 1px solid #ddd; /* Border around container */
    border-radius: 4px; /* Rounded corners */
    background-color: #f9f9f9; /* Background color */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cart-details {
        flex-direction: column;
    }

    .cart-left,
    .cart-right {
        width: 100%;
        box-sizing: border-box;
    }

    .cart-left {
        margin-bottom: 20px;
    }
    
    .cart-item {
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start; /* Align items to the start of the container */
    }

    .item-first,
    .item-second,
    .item-third {
        width: 100%; /* Full width for each item */
        text-align: left; /* Align text to the left */
    }

    .item-second {
        display: flex;
        flex-direction: row; /* Ensure inner elements are still horizontal */
        margin-top: 10px; /* Add margin to separate from other items */
    }

    .item-price,
    .item-total-price {
        margin: 10px 0; /* Vertical margin for better spacing */
    }

    .delete-button {
        width: 100%; /* Full width for delete button */
        margin-top: 10px; /* Add margin to the top for separation */
        text-align: center; /* Center text or icon in the button */
        margin-left: 0; /* Remove left margin on mobile */
    }
}

/* Center notification on small screens */
@media (max-width: 768px) {
    .notification-index,
    .notification-cart {
        right: 50%;
        transform: translateX(50%); /* Center horizontally */
    }
}

/* Popup pro galerii */
.gallery-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.gallery-popup {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-sizing: border-box;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr); /* Dva řádky se stejnou výškou */
    grid-gap: 20px; /* Mezery mezi položkami */
    max-width: 100%;
    overflow: hidden;
    padding: 20px;
    padding: 250px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Vyplňuje kontejner a udržuje poměr stran */
    border-radius: 4px; /* Zaoblení rohů obrázků */
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    z-index: 1001;
}

/* Blokování scrollování */
body.no-scroll {
    overflow: hidden;
}

/* Efekt hover na obrázku produktu */
.product-image-container {
    position: relative;
    display: inline-block;
}

.product-image {
    cursor: pointer;
    transition: filter 0.3s;
}

.product-image-container:hover .product-image {
    filter: brightness(70%);
}

.plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff; /* Bíla barva ikony */
    background-color: #4CAF50; /* Barva kolečka */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Skrytá ikona */
    transition: opacity 0.3s;
    cursor: pointer; /* Kurzory pointer */
}

.product-image-container:hover .plus-icon {
    opacity: 1; /* Zobrazí ikonu při hoveru */
}

/* Popup okno - odeslaná objednávka */
.popup_confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.popup_confirm {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

               #product_openPopup {
            padding: 10px 20px;
            background-color: #f00;
            color: white;
            border: none;
            cursor: pointer;
            margin: 20px;
        }

        .product_popup {
            position: relative; /* Make the popup relative to position child elements */
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .product_popup-content {
            position: relative; /* Set to relative to position close button correctly */
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            max-width: 900px;
            width: 90%;
            display: flex;
            justify-content: space-between;
        }

        .product_popup-left {
            flex: 1;
            margin-right: 20px;
            position: relative;
            max-width: 60%;
        }

        .product_main-image-container {
            position: relative;
            text-align: center;
        }

        .product_main-image {
            width: 100%;
            height: auto;
            border: 1px solid #ccc;
            margin-bottom: 10px;
        }

        .product_nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .product_prev-main {
            left: 0;
        }

        .product_next-main {
            right: 0;
        }

        .product_thumbnails-container-1 {
            display: flex;
            align-items: center;
            position: relative;
            width: auto;
            max-width: 100%;
            margin-left: 50px;
            margin-right: 50px;
        }

        .product_thumbnails-container {
            display: flex;
            align-items: center;
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .product_thumbnail {
            flex: 0 0 calc(33.33% - 10px);
            box-sizing: border-box;
            height: 100px;
            object-fit: contain;
            margin-right: 10px;
            transition: opacity 0.3s ease, filter 0.3s ease;
        }

        .product_thumbnail:last-child {
            margin-right: 0;
        }

        .product_thumbnails-wrapper {
            display: flex;
            transition: transform 0.3s ease;
            min-width: calc(100% + 10px);
        }

        .product_nav-thumbnail {
            background-color: rgba(255, 255, 255, 0.8);
            color: black;
            border: none;
            padding: 10px;
            cursor: pointer;
            z-index: 10;
        }

        .product_prev-thumbnail, .product_next-thumbnail {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 100%;
            background-color: #4CAF50;
            color: white;
            z-index: 20;
        }

        .product_prev-thumbnail {
            left: -50px;
        }

        .product_next-thumbnail {
            right: -50px;
        }

        .product_popup-right {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product_product-title {
            font-size: 24px;
            margin-bottom: 10px;
        }
        
        @media (min-width: 769px) {
          .product_product-title {
              width: 87%;
          }
        }

        .product_product-description {
            font-size: 16px;
            margin-bottom: 20px;
            text-align: justify;
        }

        .product_product-price {
            font-size: 20px;
            font-weight: bold;
            margin: 20px auto;
            padding: 10px 20px;
            border: 2px solid #4CAF50;
            border-radius: 4px;
            background-color: transparent;
            color: #4CAF50;
            display: inline-block;
        }

        .product_add-to-cart {
            padding: 10px 20px;
            background-color: #f00;
            color: white;
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .product_active-thumbnail {
            filter: brightness(0.5);
        }
        
        .product_close {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #4CAF50;
            color: white;
            font-size: 24px;
            padding: 5px; /* Adjust padding for better alignment */
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            width: 30px; /* Increased width for better visibility */
            height: 30px; /* Increased height for better visibility */
            display: flex; /* Centering the "x" */
            align-items: center; /* Center vertically */
            justify-content: center; /* Center horizontally */
            border: 6px solid white;
        }

        .product_close:hover {
            background-color: #45a049;
        }
        
        

/* Media Query pro mobilní zařízení */
@media (max-width: 768px) {
    .product_popup-content {
        flex-direction: column; /* Změna na sloupec */
        max-height: calc(100vh - 160px); /* Maximální výška okna minus padding top a bottom (35px nahoře a dole) */
        overflow-y: auto; /* Přidá posuvník, pokud obsah přesahuje stanovenou výšku */
        margin: 0px 10px;
    }
    
        /* Stylování scrollbar pro WebKit prohlížeče (Chrome, Edge, Safari) */
    .product_popup-content::-webkit-scrollbar {
        width: 4px; /* Šířka scrollbaru */
    }

    .product_popup-content::-webkit-scrollbar-thumb {
        background-color: #ccc; /* Barva "palce" scrollbaru */
        border-radius: 10px; /* Zaoblené hrany */
    }

    .product_popup-content::-webkit-scrollbar-thumb:hover {
        background-color: #aaa; /* Barva při najetí myší */
    }

    .product_popup-content::-webkit-scrollbar-track {
        background: transparent; /* Průhledné pozadí scrollbaru */
    }

    /* Stylování scrollbar pro Firefox */
    .product_popup-content {
        scrollbar-width: thin; /* Tenký scrollbar */
        scrollbar-color: #ccc transparent; /* Barva "palce" a pozadí */
    }

    .product_popup-left,
    .product_popup-right {
        max-width: 100%; /* Obě části zaplní dostupný prostor */
        margin: 0; /* Odstranění marginu */
    }

    .product_thumbnail {
        flex: 0 0 calc(33.33% - 10px); /* Miniatury zabírají třetinu šířky */
    }
    
}

.f-thumbs.is-classic.is-horizontal {
    padding: 0 56px;
}

.f-carousel *, .f-carousel *:before, .f-carousel *:after{
    width: 100%;
}

.f-button{
    background-color: #4CAF50 !important;
    color: white !important;
}

.f-thumbs__slide__button{
    background: rgba(255, 255, 255, 0.8) !important;
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next{
    right: 0 !important;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev{
    left: 0 !important;
}

.f-carousel__thumbs .carousel__slide {
    width: 80px !important;     /* Nastavte šířku miniatury */
    height: 80px !important;    /* Nastavte výšku miniatury */
    margin: 5px !important;     /* Nastavte mezeru mezi miniaturami */
}

.f-carousel__thumbs img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px; /* Volitelné zaoblení rohů */
}

/* Stylování kategorií na desktopu */
.category-menu {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0px !important;
}

/* Skryjeme tlačítko Kategorie na desktopu */
.category-toggle {
    display: none;
}

/* Zobrazení tlačítka Kategorie na mobilu */
@media (max-width: 768px) {
    .category-toggle {
        display: block;
        width: 100%; /* Tlačítko přes celou šířku */
        padding: 10px;
        font-size: 18px;
        text-align: center;
        background-color: #4CAF50;
        color: #fff;
        border: none;
        cursor: pointer;
        border-radius: 0px;
        margin-top: 20px !important;
    }

    /* Styl pro rozbalovací menu */
    .category-menu {
        display: none;
        flex-direction: column;
        background-color: #4CAF5033;
        padding: 20px 40px;
    }

    .category-menu.active {
        display: flex; /* Zobrazení menu, pokud je aktivní */
        margin-top: 0px !important;
    }
}

/* Styl pro popup */
.popup_success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: none; /* skrytý, dokud se nezobrazí */
}










