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;
    }
}
