html,
body,
button,
input,
select,
textarea {
    font-family: "Montserrat", "Segoe UI", sans-serif !important;
}

thead,
thead th,
.table thead th,
table thead th {
    text-transform: capitalize !important;
}

a.link{
    text-decoration: none;
    color: #000 !important;
    font-weight: bold !important;
}
.active {
    background-color: #fff !important;
}
.required_asterik:after {
    content: '*';
    color: red;
    padding-left: 5px;
}
.color_secondary {
    background-color: #f5f5f5 !important;
}

.hidden{
    display: none !important;
}
a.delete {
    text-decoration: none;
    color: darkred !important;
}

a.delete:hover {
    text-decoration: underline;
    color: red !important;
}

a.edit {
    text-decoration: none;
}

a.edit:hover {
    text-decoration: underline;
}

.sticking {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    background-color: #000000 !important;
}

fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow:  0px 0px 0px 0px #8fa9ff7a;
    box-shadow:  0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width:auto;
    padding:0 10px;
    border-bottom:none;
}

.pagination > li > a,
.pagination > li > span {
    color: #000;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #000;
    border-color: #fff;
}
.color-green {
    color: #0b2e13 !important;
}
.color-darkgreen {
    color: darkgreen;
}
.darkred {
    color: darkred !important;
}
.darkorange{
    color: darkorange !important;
}
.darkgreen {
    color: darkgreen !important;
}
.blurry {
    text-shadow: 0 0 32px white;color: transparent;
}

/* NEED TO BE REMOVED ON PRODUCTION */
[class*=sidebar-light-] .nav-treeview>.nav-item>.nav-link.active {
    color: #fff;
}
[class*=sidebar-light-] .nav-treeview>.nav-item>.nav-link.active:hover {
    color: #ccc;
}
/* END BLOCK TO BE REMOVED */

/* ========================================
   Custom Toastr Styling
   ======================================== */

/* Base toast container */
#toast-container > div {
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 15px 20px 15px 60px;
    width: 350px;
    position: relative;
    border-left: 8px solid;
}

/* Toast title styling */
#toast-container > div .toast-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 3px;
    display: block;
}

/* Toast message styling */
#toast-container > div .toast-message {
    font-size: 13px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
}

/* Icon positioning */
#toast-container > div:before {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/* Close button */
#toast-container > div .toast-close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #999;
    opacity: 0.7;
    font-size: 16px;
}

#toast-container > div .toast-close-button:hover {
    opacity: 1;
    color: #666;
}

/* Success Toast - Green */
#toast-container > .toast-success {
    background-color: #ffffff;
    border-left-color: #28a745;
}

#toast-container > .toast-success:before {
    content: "\f058"; /* fa-check-circle */
    color: #28a745;
}

#toast-container > .toast-success .toast-title {
    color: #28a745;
}

/* Error Toast - Red */
#toast-container > .toast-error {
    background-color: #ffffff;
    border-left-color: #dc3545;
}

#toast-container > .toast-error:before {
    content: "\f057"; /* fa-times-circle */
    color: #dc3545;
}

#toast-container > .toast-error .toast-title {
    color: #dc3545;
}

/* Warning Toast - Orange */
#toast-container > .toast-warning {
    background-color: #ffffff;
    border-left-color: #ffc107;
}

#toast-container > .toast-warning:before {
    content: "\f071"; /* fa-exclamation-triangle */
    color: #ffc107;
}

#toast-container > .toast-warning .toast-title {
    color: #ffc107;
}

/* Info Toast - Blue */
#toast-container > .toast-info {
    background-color: #ffffff;
    border-left-color: #17a2b8;
}

#toast-container > .toast-info:before {
    content: "\f05a"; /* fa-info-circle */
    color: #17a2b8;
}

#toast-container > .toast-info .toast-title {
    color: #17a2b8;
}

/* Progress bar */
#toast-container > div .toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: rgba(0, 0, 0, 0.1);
    opacity: 0.8;
}

/* Hover effect */
#toast-container > div:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

#toast-container > div {
    animation: fadeInDown 0.3s ease-in-out;
}
