/* General */
body {
    background-color: #E5DCC3;
}

input:focus {
    border: 2px solid #E5DCC3 !important;
    outline: 2px solid #E5DCC3 !important; /* Change to any color you want */
    outline-offset: 2px; /* Optional: Adds space between the outline and the input */
}

/* Specific */
.background_beige {
    background-color: #E5DCC3;
}

.hero-section {
    background: url('https://via.placeholder.com/1500x600') center/cover no-repeat;
    color: #000000; /* Černá barva textu */
    text-align: center;
    padding: 100px 20px;
}

.btn-custom {
    all: unset; /* Reset all inherited and browser-applied styles */
    display: inline-block; /* Allow it to behave like a clickable element */
    background-color: #000000 !important;
    color: #FFFFFF !important;
    text-align: center;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer; /* Ensure it appears clickable */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    margin: 3px;
}

.btn-custom:hover {
    background-color: #4c4c4c !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5), 2px 2px 10px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
}



.background_white_color {
    background-color: #FFFFFF;
}

.card_custom_style {
    max-width: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.detail_history_card {
    border: 0;
}

.h2_custom_style {
    margin-top: 100px;
}

#item-name {
    margin-bottom: 30px; /* Add space below */
}

.progress {
    margin: 10px;
}

.margin_top {
    margin-top: 30px;
}

.margin_bottom {
    margin-bottom: 30px;
}

.margin_horizontal {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card_image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Default styling (Desktop) */
.btn_navbar_position {
    margin-left: 1rem; /* As per existing styles on desktop */
}

.text-static {
    color: black; /* Takes the color of surrounding text (static styling) */
    text-decoration: none; /* Ensures no underline */
}

.table_overview_auctions {
    border: none;
}

.feature_image {
    border-radius: 5px; /* Makes all corners of the image rounded */
}

.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    border-radius: 20px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h1 {
    text-align: center;
    margin-top: 70px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    max-width: 800px;
    margin: 25px auto;
    color: #888;
    font-size: 18px;
}

.tz-gallery {
    padding: 40px;
}

.tz-gallery .lightbox img {
    width: 100%;
    margin-bottom: 30px;
    transition: 0.2s ease-in-out;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}

.tz-gallery .lightbox img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.tz-gallery img {
    border-radius: 4px;
}

.baguetteBox-button {
    background-color: transparent !important;
}

.label-text {
    color: #9A9483;
    font-size: 12px;
    font-style: italic;
}

.price-change.glow {
    animation: glow-effect 0.3s ease-in-out;
}

.nav-pills .nav-link.active, .nav-pills .show .nav-link {
    background-color: #000000 !important; /* Custom background color for the active pill */
    color: white; /* Text color for the active pill */


    border-radius: 5px; /* Rounded corners for the active pill */
    border: 2px solid #000000; /* Optional border around the active pill */
}

.nav-pills .nav-link {
    color: #000000; /* Text color for inactive pills */
}

@keyframes glow-effect {
    0% {
        text-shadow: 0 0 5px #83ff52, 0 0 10px #83FF52FF, 0 0 15px #83FF52FF;
    }
    100% {
        text-shadow: none;
    }
}

/* Mobile styling */
@media (max-width: 768px) {
    .navbar {
        background-color: #AAA492; /* Black background for mobile */
    }

    .btn_navbar_position {
        display: block; /* Block-level for full width */
        margin: 1rem auto; /* Horizontally center the button */
        text-align: center; /* Center the text */
    }

    body {
        padding: 0;
    }

    .container.gallery-container {
        border-radius: 0;
    }
}

/* BankID */
#zocial-bankid {
    background: black;
    border-radius: 8px;
    color: white;
    padding: 9px 12px;
    text-decoration: none;
    display: inline-flex;
}

#zocial-bankid span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#bankid-button-logo {
    width: 70px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid white;
}

.onb_cards_padding {
    padding-top: 25px;
    padding-bottom: 5px;
}

.new_auction_wizard_progressbar {
    height: 1px;
    background-color: #000000;
}