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;
}

.faicon-size-13 {
    font-size: 1.3em;
    margin-top: 2px;
}

.faicon-size-15 {
    font-size: 1.5em;
    margin-top: 2px;
}

.faicon-size-22 {
    font-size: 2.2em;
}

.faicon-scale:hover {
    transform: scale(1.5);
    /*    color: red;*/
    cursor: pointer;
    transition: transform 1s;
}

.boldText:hover{
    font-weight:600;
}

/*----------- MODAL ----------------*/
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.big-checkbox {
    width: 30px;
    height: 30px;
}
.big-checkbox-25 {
    width: 25px;
    height: 25px;
}

.mid-checkbox {
    width: 20px;
    height: 20px;
    box-shadow: 1px 1px lightblue;
}



@keyframes blinker {
    50% {
        opacity: 0;
    }
}
.blink {
    animation: blinker 1s linear infinite;
}

#logoHolder {
    background: #333;
    height: 60px;
}

/* Style for the input field */
.underline-input {
    border: none; /* Remove default border */
    border-bottom: 1px solid #ccc; /* Add underline */
    padding: 5px 0; /* Add padding as needed */
    width: 100%; /* Set width as needed */
    box-sizing: border-box; /* Include padding and border in total width */
    outline: none; /* Remove outline when focused */
}

    /* Optional: Hover and focus styles */
    .underline-input:hover,
    .underline-input:focus {
        border-bottom-color: blue; /* Change underline color on hover/focus */
    }


.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 20vh;
}

.card-button {
    position: relative; /* Position relative for absolute positioning of the badge */
    width: 150px;
    height: 150px;
    background-color: white;
    color: #FF3366; /* Match the text color as in the image */
    font-size: 2em;
    text-align: center;
    line-height: 150px; /* Center text vertically */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Initial shadow */
    border-radius: 10px; /* Slightly rounded corners */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
    cursor: pointer;
}

    .card-button:hover {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Larger shadow on hover */
        transform: translateY(-5px); /* Rise up on hover */
    }

.disable-div {
    pointer-events: none;
    opacity: 0.7; /* Optional: makes it look disabled */
    background-color:lightgray;
}

.disable-div5 {
    pointer-events: none;
    opacity: 0.5;
}


.selectItem{
    cursor:pointer;    
}

.desktop-header {
    display: table-cell;
}

.mobile-header {
    display: none;
}

@media (max-width: 600px) {
    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: table-cell;
    }
}

.opacity-05 {
    opacity: 0.3; 
    background-color: lightgray;

}


/* Hide specific columns on mobile */
@media only screen and (max-width: 600px) {
    .mobile-hide {
        display: none;
    }
}


.bd-callout {
    --bs-link-color-rgb: var(--bd-callout-link);
    --bs-code-color: var(--bd-callout-code-color);    
    margin-top: 0.25rem;
    margin-bottom: 0.1rem;
    color: var(--bd-callout-color, inherit);
    background-color: var(--bd-callout-bg, var(--bs-gray-100));
    border-left: .25rem solid var(--bd-callout-border, var(--bs-gray-300));
}

.bd-callout-info {
    --bd-callout-color: var(--bs-info-text-emphasis) #6edff6;
    --bd-callout-bg: var(--bs-info-bg-subtle);
    --bd-callout-border: var(--bs-info-border-subtle);
}

.bd-callout-warning {
    --bd-callout-color: var(--bs-warning-text-emphasis) #ffda6a;
    --bd-callout-bg: var(--bs-warning-bg-subtle);
    --bd-callout-border: var(--bs-warning-border-subtle);
}

.bd-callout-danger {
    --bd-callout-color: var(--bs-danger-text-emphasis);
    --bd-callout-bg: var(--bs-danger-bg-subtle);
    --bd-callout-border: var(--bs-danger-border-subtle) #842029;
}

.rotaCardWith {
    width: 40rem;
}
.rotaCardMinWith {    
    min-width:18rem;
}

.start-105 {
    left: 105% !important;
}

.water-mark {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ccc;
    padding: 2rem;
}

    /* Watermark overlay */
    .water-mark::after {
        content: "DELETED";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-30deg);
        font-size: 5rem;
        color: rgba(255, 0, 0, 0.15); /* Light red */
        font-weight: bold;
        pointer-events: none;
        z-index: 9999;
        white-space: nowrap;
    }

.pinkBg {
    background-color: #ea868f;
}

.spin-and-disappear {
    animation: spinFade 1s ease-in-out forwards;
    display: inline-block;
}

.spin-once-horizontal {
    animation: spinY 2s ease-in-out forwards;
    display: inline-block;
}

@keyframes spinY {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}

@keyframes spinFade {
    0% {
        transform: rotateY(0deg);
        opacity: 1;
        visibility: visible;
    }

    100% {
        transform: rotateY(360deg);
        opacity: 0;
        visibility: hidden;
    }
}