﻿body {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
}

.flex-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.padding-top-auto {
    padding-top: calc(2vw + 2vh);
}

.fixed-header {
    background-color: #36b76c;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    padding: 1px 0;
}
.text-autofixed {
    font-size: calc(2vw + 1vh);
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; 
    padding: 5px;
}

.gallery-item {
    flex: 1 1 75px;
    max-width: 125px; 
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

    .gallery-item img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.options-container {
    width: 98%;
    max-width: 600px;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.title {
    color: #36b76c;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    text-align: center;
}

.margin-top-16 {
    margin-top: 16px;
}
/* generic classes */
.center-element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.text-decoration-none {
    color: inherit !important;
    text-decoration: none !important;
}

.disable-element {
    pointer-events: none;
    opacity: 0.3;
}

.pointer-event-none {
    pointer-events: none;
}

.opacity-50-percent {
    opacity: 0.5;
}

.display-none {
    display: none;
}

.width-100-percent {
       width: 100%;
}

.border-none {
    border: none;
}

.link-decoration-none {
    text-decoration: none !important;
}

    .link-decoration-none:hover {
        text-decoration: none !important;
    }
