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%;
}

body {
    margin-bottom: 60px;
}

/* Small size */
.form-check-sm .form-check-input {
    width: 2rem;
    height: 1rem;
    margin-top: 0.3rem;
}

/* Large size */
.form-check-lg .form-check-input {
    width: 3rem;
    height: 1.5rem;
    margin-top: 0.3rem;
}

/* Adjust label size if needed */
.form-check-lg .form-check-label {
    font-size: 1.1rem;
    padding-top: 0.2rem;
    padding-left: 0.2rem;
}

.clickable {
    cursor: pointer;
}

    .clickable:hover {
        color: blue;
    }

.toast {
    opacity: 1 !important;
}

.nav-link.active {
    font-weight: bold;
    color: #007bff;
    text-decoration: overline;
}

.preview-image-max-height {
    max-height: 75px;
    margin: 0 auto !important;
}

.preview-image {
    max-width: 100%;
}

.striped-bg {
    background: repeating-linear-gradient(45deg, /* Angle of the lines */ #979494, /* Line color */ #f1ecec 1px, /* Line thickness (1px) */ transparent 1px, /* Start gap immediately after 1px */ transparent 11px /* End gap at 11px (1px line + 10px gap) */ );
}

.blurred-text-filter {
    filter: blur(1px); /* Adjust the pixel value for the desired intensity */
}