html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100% !important;
}

body {
    min-height: 100% !important;
}

.footer {
    position: relative !important;
    height: 10px !important;
    clear: both !important;
    padding-top: 20px !important;
}

.select2-container {
    width: 100% !important
}

.image-container {
    position: relative;
    width: 200px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px; /* Optional: rounded corners */
    }

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .overlay {
    opacity: 1;
}

.upload-icon {
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.active {
    color: #495057 !important;
    background-color: #fff !important;
    border-color: #dee2e6 #dee2e6 #fff !important;
}
