/* Tailwind Custom CSS */

.border-green {
    --tw-border-opacity: 1;
    border-color: #35694f;
} .border-red {
    --tw-border-opacity: 1;
    border-color: #aa2b2b;
} .border-yellow {
    --tw-border-opacity: 1;
    border-color: #cab248;
} .border-blue {
    --tw-border-opacity: 1;
    border-color: #4a67b1;
} .border-info {
    --tw-border-opacity: 1;
    border-color: #dfdfdf;
} .bg-notice {
    background-image: linear-gradient(98.24deg, #bbf3e7 0%, #8aa8e9 100%);
} .bg-warning {
    background-image: linear-gradient(98.24deg, #f4f755 0%, #f9aa5b 100%);
} .bg-info {
    background-image: linear-gradient(98.24deg, #dfdfdf 0%, #b2b2b2 100%);
} .bg-transparent {
    background-color: transparent;
} .bg-danger {
    background-image: linear-gradient(98.24deg, #e74747 0%, #d32e2e 100%);
} .hover\:bg-gray-300:hover {
    --tw-bg-opacity: 1;
    background-color:#bfbfbf;
} .hover\:bg-danger-100:hover {
    --tw-bg-opacity: 1;
    background-color:#8d0404;
}

.overflow-x-auto {
    overflow-x: auto;
}
.table-auto {
    table-layout: auto;
}
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
} .font-medium{
    font-weight: 500;
} .font-bold {
    font-weight: 700;
}

.bg-green-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(23 187 132 / var(--tw-bg-opacity));
} .bg-red-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(232 84 68 / var(--tw-bg-opacity));
} .bg-orange-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(246 122 40 / var(--tw-bg-opacity));
} .text-indigo-500 {
    --tw-text-opacity: 1;
    color: rgb(56 44 221 / var(--tw-text-opacity));
} .text-indigo-400 {
    --tw-text-opacity: 1;
    color: rgb(96 86 228 / var(--tw-text-opacity));
}

.bg-danger-wave {
    background-size: 200% auto;
    background-image: linear-gradient(90deg, #e22828, #be1111);
    animation: wave 2s linear infinite;
}
.bg-success-wave {
    background-size: 200% auto;
    background-image: linear-gradient(90deg, #347afa, #2869e1);
    animation: wave 2s linear infinite;
}

@keyframes wave {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.rounded {
    border-radius: 0.9rem;
}

.p-4 {
    padding: 1rem;
} .px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
} .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
} .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
} .py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
} .py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
} .py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
} .pb-3 {
    padding-bottom: 0.75rem;
} .pb-4 {
    padding-bottom: 1rem;
} .pt-4 {
    padding-top: 1rem;
} .pb-1 {
    padding-bottom: 0.25rem;
} .pb-2 {
    padding-bottom: 0.5rem;
} .pt-1 {
    padding-top: 0.25rem;
} .pt-2 {
    padding-top: 0.5rem;
}

.text-left {
    text-align: left;
} .text-center {
    text-align: center;
}

/* Navbar */

.navbar-fixed {
    border-bottom: 1px solid #ececec; 
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

/* Pagination */

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
} .pagination a, .pagination span {
    margin: 0 5px;
    padding: 8px 16px;
    text-decoration: none;
    color: #007bff;
} .pagination a:hover {
    background-color: none;
} .pagination .current {
    background-color: #9dc6f3;
    color: white;
} .pagination .disabled {
    color: #ccc;
} .pagination .ellipsis {
    padding: 8px 16px;
    color: #999;
}

/* Buttons */

.plus-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: none;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
} .plus-button:hover {
    background-color: #d4d4d4;
    transform: scale(1.1);
}

/* Anchors */

.anchor {
    color: #007bff;
    text-decoration: none;
} .anchor:hover {
    text-decoration: none;
    color: #0056b3;
}

/* Mobile Navigation */

.mobile-nav {
    z-index: 1000;
}

.leaflet-container {
    z-index: 0;
}

/* Flexbox */

.flex {
    display: flex;
}

.w-3-10 {
    width: 30%;
}

.w-7-10 {
    width: 70%;
}

.h-full {
    height: 100%;
}

.hr {
    border-top: 1px solid #ececec;
    margin-left: 0px;
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hr {
        margin-right: 0px;
    }
}