.energy-drink-theme {
    background-color: #ff1b26; /* Bold, vibrant red */
    border-bottom: 5px solid #ffcf00; /* High contrast yellow border */
}

.energy-drink-theme .navbar-brand {
    font-family: 'Impact', sans-serif; /* Bold, strong font choice */
    color: #ffffff; /* White text for contrast */
}

.energy-drink-theme .navbar-nav .nav-link {
    color: #ffffff; /* White text for links */
    position: relative;
}

.energy-drink-theme .navbar-nav .nav-link:hover {
    color: #ffcf00; /* Yellow color on hover for contrast */
    transition: color 0.3s ease-in-out;
}

.energy-drink-theme .navbar-toggler {
    border-color: #ffffff;
}

.energy-drink-theme .navbar-toggler-icon {
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg viewBox="0 0 30 30" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath stroke="rgba%28255, 255, 255, 1%29" stroke-width="2" linecap="round" linejoin="round" d="M4 7h22M4 15h22M4 23h22"/%3E%3C/svg%3E');
}

.energy-drink-theme .logo {
    height: 40px;
    margin-right: 10px;
}html, body {
    max-width: 100%;
    overflow-x: hidden;
}
html {
    font-size: 14px
}
.left {
    text-align: left;
}
.center {
    text-align: center;
}
.right {
    text-align: right;
}
.nowrap {
    white-space: nowrap;
}
.nowrap-col {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.elipses-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hidden-overflow {
    overflow: hidden;
    text-overflow: hidden;
}
.htmx-indicator {
    visibility: hidden;
    opacity: 0;
    transition: opacity 250ms ease-in;
}
.htmx-request {
    visibility: visible;
}
#page_load_indicator {
    height: 20%;
    width: 20%;
    position: fixed;
    top: 40%;
    left: 40%;
    z-index: 11111;
}
.pointer {
    cursor: pointer;
}
.grey-star {
    color: #ccc;
}
.yellow-star {
    color: #ffbd00;
}
.select2-styling {
    height:28px;
    font-size:10px;
}
.star-rating {
    display: flex;
    flex-direction: row;
}

.star {
    font-size: 1.5em; /* Make the stars smaller */
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}
.review-img {
    padding:6px; 
    max-width:180px; 
    max-height:180px; 
    width: auto; 
    height: auto;
}
@media (max-width:768px){
    .display-star {
        font-size: 8px; /* Make the stars smaller */
    }
    .input-star {
        font-size: 17px; /* Make the stars smaller */
    }
    .review-img {
        padding:6px; 
        max-width:120px; 
        max-height:120px; 
        width: auto; 
        height: auto;
    }
}

.star.checked {
    color: #ffbd00;
}

.collapsing {
    transition: none !important;
}


.drink-img {
    width: auto;
    height: 100%;
    object-fit: contain; /* This will cover the container, cutting off sides */
}
.hover-link {
    cursor: pointer;
}
.hover-link:hover {
    color:purple;
}
a {
    color: inherit; /* blue colors for links too */
    text-decoration: inherit; /* no underline */
}
.btn-xs {
    padding: 2px 2px;
    font-size: 11px;
    line-height: 1.2em;
}

[data-bs-theme="light"] #body {
    background-color: #f4f5f8 !important;
}
[data-bs-theme="light"] .card-highlight .card-header {
    background-color:#fff;
}
[data-bs-theme="light"] .text-50 {
    --bs-text-opacity: 1;
    color: rgba(0,0,0,.5) !important;
}

[data-bs-theme="dark"] .card-highlight {
    background-color:unset !important;
}
[data-bs-theme="dark"] .select2-dropdown, .select2-dropdown *, table, .select2, .select2 *{
    background-color: var(--bs-body-bg) !important;
    color: var(--bs-text-bg) !important;
}
[data-bs-theme="dark"] canvas, #page_load_indicator {
    filter: invert(1) hue-rotate(180deg);
}
[data-bs-theme="dark"] .text-50 {
    --bs-text-opacity: 1;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Container for the images to add padding and rounded corners */
[data-bs-theme="light"] .image-container {
    padding: 10px;
    background-color: #f0f0f0; /* Slightly darker than white for contrast */
    border-radius: 8px;
}

/* Image styling */
[data-bs-theme="light"] .image-container img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Softer shadow for light mode */
    transition: transform 0.2s ease-in-out; /* Smooth zoom effect on hover */
}

/* Hover effect */
[data-bs-theme="light"] .image-container-hover img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Container for the images to add padding and rounded corners */
[data-bs-theme="dark"] .image-container {
    padding: 10px;
    background-color: #1e1e1e; /* Slightly lighter background */
    border-radius: 8px;
}

/* Image styling */
[data-bs-theme="dark"] .image-container img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Soft shadow */
    transition: transform 0.2s ease-in-out; /* Smooth zoom effect on hover */
}

/* Hover effect */
[data-bs-theme="dark"] .image-container-hover img:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

