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%;
}
.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}
body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.danger-button {
    background-color: red;
    color: white;
    font-size: 10px
}

.custom-button {
    background-color: #072E33;
    color: white;
    font-size: 10px
}
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.toast-message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.toaster-message {
    width: 100%;
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.toaster-message .card-title {
        color: black;
        font-size: 0.9rem;
    }

.toaster-message .btn-primary {
        background-color: #5bc0de;
        border-color: #46b8da;
    }
/* Import Invoice Modal - Purple Theme */
.import-modal .modal-content {
    border: 3px solid #6f42c1;
    border-top: 5px solid #6f42c1;
}

.import-modal .modal-header {
    background-color: #6f42c1;
    color: white;
}

/* Upload Modal - Blue Theme */
.upload-modal .modal-content {
    border: 3px solid #0d6efd;
    border-top: 5px solid #0d6efd;
}

.upload-modal .modal-header {
    background-color: #0d6efd;
    color: white;
}

/* Confirmation Modal - Green Theme */
.confirm-modal .modal-content {
    border: 3px solid #198754;
    border-top: 5px solid #198754;
}

.confirm-modal .modal-header {
    background-color: #198754;
    color: white;
}


@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* ... other styles ... */
@@media print {
    /* Target the specific element with the background color */
    .transaction-header-color {
        /* Standard property */
        print-color-adjust: exact !important;
        /* WebKit/Blink (Chrome, Safari, Edge) prefix */
        -webkit-print-color-adjust: exact !important;
        background-color: #e0e0e0 !important; /* Ensure the color itself is retained */
    }
    /* You can apply these rules globally if you need all backgrounds */
    /*
            * {
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
            }
            */
}

.container {
    box-shadow: inset 10px 0 0 0 lightgray, /* Left inset border */
    inset -10px 0 0 0 lightgray); /* Right inset border */
    min-height: 85vh;
    box-sizing: border-box;
    border-left: outset 1px lightgray;
    border-right: outset 1px lightgray;
}

.borderLessInput {
    border: none;
}
/* Chrome, Safari, Edge, Opera */
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.no-spinners[type=number] {
    -moz-appearance: textfield;
}

.custom-button {
    background-color: #072E33;
    color: white;
    font-size: 10px
}

.button-reset {
    background-color: dimgrey;
    color: white;
    font-size: 10px
}

.small {
    font-size: 9px
}

.btn-remove {
    background-color: red;
    color: white;
    font-size: 10px
}

thead, tbody, td {
    font-size: 9px;
}

label {
    font-size: 9px;
    font-weight: bold;
}

.form-control {
    padding: .3rem .5rem !important;
}

.form-input-dropdown {
    line-height: 0.7rem !important; /* Recommended minimum for accessibility */
    width: 100%; /* Added 'px' unit */
    font-size: 10px !important;
    border-radius: 3px;
}

.form-input {
    line-height: 0.3rem !important; /* Recommended minimum for accessibility */
    width: 100%; /* Added 'px' unit */
    font-size: 9px !important;
    border-radius: 3px;
}

.form-input-item {
    line-height: 0.4rem !important; /* Recommended minimum for accessibility */
    /* Added 'px' unit */
    font-size: 9px !important;
    border-radius: 3px;
}

.container {
    height: 100% !important;
}

.form-input-item, .form-input-dropdown, .form-input:focus {
    box-shadow: none !important;
}