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.05rem white, 0px 0px 0 0 #212529
}

html {
  position: relative;
  min-height: 100%;
}

body {
 /* margin-bottom: 60px;*/
}

.input-group-text
{
    min-width:150px;
}
.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border: 1px solid lightgrey;
}
.form-select:focus {
    border-color: #383d4325;
    outline: 0;
    box-shadow: 0px 0px 2px 2px rgb(30 31 32 / 25%);
}


.loadingOverlay {
    display: none;
    background-color: rgba(38, 52, 96, 0.4);
    background: rgba(38, 52, 96, 0.4);
    color: rgba(38, 52, 96, 0.4);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
}


.card {
   
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    transition: transform 0.3s ease-in-out; /* Smooth hover effect */
}

    .card:hover {
      /*  transform: translateY(-1px);*/ /* Slight lift on hover */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1); /* Deeper shadow on hover */
    }

.card-header {
    background-color: #343a40; /* Darker background for header */
    color: white;
    font-size: 1rem;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    font-weight: 600;
}
 

/* Card Title Styling */
.card-title {
    font-weight: 700;
    font-size: 1rem;
}

/* Card Footer Styling (if present) */
.card-footer {
    background-color: #f8f9fa;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.control-label {
    background: #f1f1f1;
    color: #282828;
    border-radius: 5px 5px 0px 0px;
    padding: 1px 5px;
    margin-top: 0.5rem;
    font-size: 12pt;
    border-left: .5px solid #dee2e6;
    border-top: .5px solid #dee2e6;
    border-right: .5px solid #dee2e6;
    border-bottom: 0.5px solid #dee2e6;
}
.form-control
{
   border-top-left-radius:0px;
}

/* Add these new styles for the toast notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.custom-toast {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(120%);
    transition: transform 0.3s ease-in-out;
}

    .custom-toast.show {
        transform: translateX(0);
    }

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.toast-success {
    background-color: #d4edda;
    color: #155724;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 0.9rem;
    color: #666;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
}

    .toast-close:hover {
        color: #333;
    }

.k-calendar td.k-selected .k-link, .k-calendar td.k-state-selected .k-link
{
    background-color:darkorange !important;
    border: #dee2e6 solid 1px !important;

}
.k-calendar .k-calendar-view .k-today .k-calendar-cell-inner, .k-calendar .k-calendar-view .k-today .k-link
{
    box-shadow:none;
}
.k-input-solid:focus, .k-input-solid.k-focus
{
 box-shadow:none;   
}
/* Selected Date Cell */
.k-calendar .k-state-selected {
    background-color: green !important; /* Orange */
    color: #ffffff !important;
    border-radius: 50%; /* optional: circular highlight */
    border: none !important;
}

/* Hover on date */
.k-calendar .k-state-hover {
    background-color: #ffe0b2 !important; /* Light orange for hover */
    color: #000 !important;
}
.k-calendar .k-state-selected {
    background: linear-gradient(to bottom right, #fff3e0, #ff6f00) !important;
    color: #000 !important;
}

.k-calendar-td .k-state-selected .k-state-focused {
    background: linear-gradient(to bottom right, #fff3e0, #ff6f00) !important;
}

.k-button-solid-primary.k-focus, .k-button-solid-primary:focus
{
    border-color:#fff !important;
}

/* ================================
   BUTTONS
   ================================ */

/* Solid Button */
.btn-one {
    background-color: #fe8100;
    border-color: #fe8100;
    color: #fff;
}

    .btn-one:hover,
    .btn-one:focus,
    .btn-one:active {
        background-color: #e57000;
        border-color: #e57000;
        color: #fff;
    }

    .btn-one:disabled,
    .btn-one.disabled {
        background-color: #fe8100;
        border-color: #fe8100;
        opacity: 0.65;
        color: #fff;
    }

/* Outline Button */
.btn-outline-one {
    color: #fe8100;
    border-color: #fe8100;
    background-color: transparent;
}

    .btn-outline-one:hover,
    .btn-outline-one:focus,
    .btn-outline-one:active {
        color: #fff;
        background-color: #fe8100;
        border-color: #fe8100;
    }

    .btn-outline-one:disabled,
    .btn-outline-one.disabled {
        color: #fe8100;
        background-color: transparent;
        border-color: #fe8100;
        opacity: 0.65;
    }

/* ================================
   TEXT COLOR
   ================================ */

.text-one {
    color: #fe8100 !important;
}

    .text-one:hover,
    .text-one:focus {
        color: #e57000 !important;
    }

/* ================================
   BACKGROUND COLOR
   ================================ */

.bg-one {
    background-color: #fe8100 !important;
    color: #fff !important;
}

.bg-one-hover:hover,
.bg-one-hover:focus {
    background-color: #e57000 !important;
}

/* ================================
   BORDER COLOR
   ================================ */

.border-one {
    border-color: #fe8100 !important;
}

/* ================================
   BADGES
   ================================ */

.badge-one {
    background-color: #fe8100;
    color: #fff;
}

/* ================================
   ALERTS
   ================================ */

.alert-one {
    background-color: #fff3e6;
    border-left: 5px solid #fe8100;
    color: #4a2e00;
}

/* ================================
   PAGINATION
   ================================ */

.page-link-one {
    color: #fe8100;
    border: 1px solid #fe8100;
}

    .page-link-one:hover,
    .page-link-one:focus {
        background-color: #fe8100;
        color: #fff;
        border-color: #fe8100;
    }

    .page-link-one.active {
        background-color: #fe8100;
        color: #fff;
        border-color: #fe8100;
    }


::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 1s;
}

::view-transition-old(root) {
  animation-name: fade-out;
}
::view-transition-new(root) {
  animation-name: fade-in;
}

@keyframes fade-out {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}



