@font-face {
    font-family: 'Mulish';
    src: url('/fonts/Mulish-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

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;
    font-family: 'Mulish', sans-serif;
}

.aligned-logo {    
    display: block;
    max-height: 117px; /* make the image be the size that's required */
}

.custom-button {
    color: black !important; /* Black background */
    background-color: #ffd100 !important; /* Yellow text */
    border: 2px solid black !important; /* Yellow border */
    padding: 10px 20px; /* Better spacing */
    font-weight: bold; /* Makes text stand out */
    transition: all 0.1s ease-in-out; /* Smooth hover effect */
    width: 10em;
}

    /* Hover effect */
.custom-button:active {
    background-color: #ffd100 !important; /* Yellow background */
    color: black !important; /* Black text */
    border-color: black !important; /* Black border */
}

/* Active (clicked) effect */
.custom-button:hover {
    background-color: #e6b800 !important; /* Slightly darker yellow */
    border-color: black !important;
    transform: scale(0.99); /* Adds a slight press-down effect */
}

/* Button not active state */
.custom-button:disabled {
    background-color: #E6C466 !important; /* Washed-out grey-yellow */
    color: #666 !important; /* Darker grey text */
    border-color: #999 !important; /* Lighter grey border */
    cursor: not-allowed !important; /* Show not active cursor */
    opacity: 0.7; /* Slightly faded effect */
}

/* Change border and background color when input is focused */
#receiptNumberInput:focus {
    border-color: #ffd100 !important; /* Yellow border */
    background-color: #ffeb99 !important; /* Lighter yellow background */
    box-shadow: 0 0 5px rgba(255, 209, 0, 0.5) !important; /* Soft glow effect */
}

.site-text {
    font-size: 19px;
    color: #737373;
}