:root {
    --gv-primary: #00695f;
    --gv-primary-dark: #004d46;
    --gv-primary-soft: rgba(0, 105, 95, 0.12);
    --gv-accent: #3c82e6;
}

body {
    background-color: #f3f6f9;
}

body[data-sidebar="dark"] .vertical-menu,
body[data-sidebar="dark"] .navbar-brand-box {
    background: var(--gv-primary-dark);
}

body[data-sidebar="dark"] #sidebar-menu ul li a,
body[data-sidebar="dark"] #sidebar-menu ul li a i,
body[data-sidebar="dark"] .menu-title {
    color: rgba(255, 255, 255, 0.78);
}

body[data-sidebar="dark"] #sidebar-menu ul li a:hover,
body[data-sidebar="dark"] #sidebar-menu ul li.mm-active > a,
body[data-sidebar="dark"] #sidebar-menu ul li a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-brand-box .logo-lg img {
    max-width: 150px;
    object-fit: contain;
}

.navbar-brand-box .logo-sm img {
    object-fit: contain;
}

.page-content {
    min-height: calc(100vh - 70px);
}

.content {
    width: 100%;
}

.content > .intro-y:first-child,
.content > .grid:first-child,
.content > form:first-child {
    margin-top: 0 !important;
}

.box {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(15, 34, 58, 0.04);
}

.panel {
    background: #fff;
    border: 1px solid #edf0f5;
    border-radius: 8px;
}

.panel-heading {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #edf0f5;
    font-weight: 600;
}

.panel-body {
    padding: 1.25rem;
}

.intro-y,
.intro-x {
    opacity: 1;
}

.preview {
    width: 100%;
}

.table {
    vertical-align: middle;
}

.table thead th {
    background-color: #f6f8fb;
    color: #495057;
    font-weight: 600;
}

.table td,
.table th {
    border-color: #e9edf3 !important;
}

.table svg,
.table i[data-feather],
.btn svg,
.btn i[data-feather] {
    vertical-align: middle;
}

.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.btn-block { width: 100%; display: block; }

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb a {
    color: #6c757d;
}

.breadcrumb a:last-child {
    color: #212529;
    font-weight: 600;
}

.bg-theme-govicle,
.bg-primary,
.btn-primary,
.btn-rounded-primary {
    background-color: var(--gv-primary) !important;
    border-color: var(--gv-primary) !important;
}

.text-primary {
    color: var(--gv-primary) !important;
}

.border-primary {
    border-color: var(--gv-primary) !important;
}

.btn-primary:hover,
.btn-rounded-primary:hover {
    background-color: var(--gv-primary-dark) !important;
    border-color: var(--gv-primary-dark) !important;
}

.btn-outline-primary {
    color: var(--gv-primary) !important;
    border-color: var(--gv-primary) !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--gv-primary) !important;
    border-color: var(--gv-primary) !important;
}

.text-theme-10,
.text-theme-26,
.text-theme-28 {
    color: #10b981 !important;
}

.text-theme-17,
.text-theme-33 {
    color: var(--gv-primary) !important;
}

.text-theme-24 {
    color: #ef4444 !important;
}

.bg-theme-10,
.bg-theme-26 {
    background-color: #10b981 !important;
}

.bg-theme-23 {
    background-color: #f59e0b !important;
}

.bg-theme-24 {
    background-color: #ef4444 !important;
}

.bg-theme-7,
.bg-gray-200 {
    background-color: #f1f5f9 !important;
}

.text-gray-300 { color: #dee2e6 !important; }
.text-gray-400 { color: #ced4da !important; }
.text-gray-500 { color: #adb5bd !important; }
.text-gray-600 { color: #6c757d !important; }
.text-gray-700 { color: #495057 !important; }
.text-gray-800 { color: #343a40 !important; }

.grid {
    display: grid;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-y-3 { row-gap: .75rem; }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-10 { grid-column: span 10 / span 10; }
.col-span-11 { grid-column: span 11 / span 11; }
.col-span-12 { grid-column: span 12 / span 12; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none !important; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-none { flex: none; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.z-10 { z-index: 10; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }

.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-hidden { overflow: hidden; }
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.whitespace-nowrap { white-space: nowrap; }

.text-xs { font-size: .75rem; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.leading-3 { line-height: .75rem; }
.leading-5 { line-height: 1.25rem; }
.leading-6 { line-height: 1.5rem; }
.leading-none { line-height: 1; }

.rounded-md { border-radius: .375rem; }
.rounded-full { border-radius: 9999px; }
.border-b { border-bottom: 1px solid #e9edf3; }
.border-b-2 { border-bottom: 2px solid #e9edf3; }
.border-l-2 { border-left: 2px solid var(--gv-primary); }
.border-dashed { border-style: dashed !important; }
.border-transparent { border-color: transparent !important; }
.border-gray-200 { border-color: #e9edf3 !important; }
.border-gray-300 { border-color: #dee2e6 !important; }
.border-gray-400 { border-color: #ced4da !important; }
.border-theme-17 { border-color: var(--gv-primary) !important; }

.cursor-pointer { cursor: pointer; }
.shadow-md { box-shadow: 0 4px 14px rgba(15, 34, 58, 0.08) !important; }
.zoom-in { transition: transform .15s ease, box-shadow .15s ease; }
.zoom-in:hover { transform: translateY(-1px); }

.form-control:focus,
.form-select:focus {
    border-color: var(--gv-accent);
    box-shadow: 0 0 0 .15rem rgba(60, 130, 230, .18);
}

.tail-select {
    line-height: 26px;
    width: 100% !important;
}

.tail-select .select-label {
    border-radius: 6px !important;
}

.mr-auto { margin-right: auto !important; }
.ml-auto { margin-left: auto !important; }
.mr-1 { margin-right: .25rem !important; }
.mr-2 { margin-right: .5rem !important; }
.mr-3 { margin-right: .75rem !important; }
.mr-4 { margin-right: 1rem !important; }
.mr-5 { margin-right: 1.25rem !important; }
.ml-1 { margin-left: .25rem !important; }
.ml-2 { margin-left: .5rem !important; }
.ml-3 { margin-left: .75rem !important; }
.ml-4 { margin-left: 1rem !important; }
.ml-5 { margin-left: 1.25rem !important; }
.ml-16 { margin-left: 4rem !important; }
.-mb-1 { margin-bottom: -.25rem !important; }
.-mt-1 { margin-top: -.25rem !important; }

.w-2 { width: .5rem !important; }
.h-2 { height: .5rem !important; }
.w-3 { width: .75rem !important; }
.h-3 { height: .75rem !important; }
.w-4 { width: 1rem !important; }
.h-4 { height: 1rem !important; }
.w-5 { width: 1.25rem !important; }
.h-5 { height: 1.25rem !important; }
.w-6 { width: 1.5rem !important; }
.h-6 { height: 1.5rem !important; }
.w-7 { width: 1.75rem !important; }
.h-8 { height: 2rem !important; }
.w-8 { width: 2rem !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.w-32 { width: 8rem !important; }
.w-40 { width: 10rem !important; }
.w-44 { width: 11rem !important; }
.w-48 { width: 12rem !important; }
.w-50 { width: 12.5rem !important; }
.w-52 { width: 13rem !important; }
.w-54 { width: 13.5rem !important; }
.w-56 { width: 14rem !important; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }

.py-0\.5 { padding-top: .125rem !important; padding-bottom: .125rem !important; }
.py-1\.5 { padding-top: .375rem !important; padding-bottom: .375rem !important; }
.px-2 { padding-left: .5rem !important; padding-right: .5rem !important; }
.px-3 { padding-left: .75rem !important; padding-right: .75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.py-1 { padding-top: .25rem !important; padding-bottom: .25rem !important; }
.py-3 { padding-top: .75rem !important; padding-bottom: .75rem !important; }

.image-fit {
    position: relative;
    overflow: hidden;
}

.image-fit > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu__content {
    padding: .5rem;
}

.dropdown-menu .dropdown-menu__content a {
    color: #495057;
}

.modal-slide-over .modal-dialog {
    margin: 0 0 0 auto;
    height: 100%;
    max-width: 420px;
}

.modal-slide-over .modal-content {
    min-height: 100%;
    border-radius: 0;
}

.form-check-switch {
    width: 2.4rem;
    height: 1.2rem;
    appearance: none;
    background: #ced4da;
    border-radius: 9999px;
    position: relative;
    transition: background .15s ease;
}

.form-check-switch:checked {
    background: var(--gv-primary);
}

.form-check-switch::after {
    content: "";
    width: .9rem;
    height: .9rem;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: .15rem;
    left: .15rem;
    transition: transform .15s ease;
}

.form-check-switch:checked::after {
    transform: translateX(1.2rem);
}

.webadmin-toast {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1080;
    max-width: 360px;
    padding: 1rem 1.25rem;
    color: #fff;
    background: var(--gv-primary);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(15, 34, 58, .24);
}

@media (min-width: 576px) {
    .sm\:flex { display: flex !important; }
    .sm\:flex-row { flex-direction: row; }
    .sm\:justify-start { justify-content: flex-start; }
    .sm\:text-left { text-align: left !important; }
    .sm\:w-auto { width: auto !important; }
    .sm\:col-span-4 { grid-column: span 4 / span 4; }
    .sm\:col-span-6 { grid-column: span 6 / span 6; }
    .sm\:col-span-12 { grid-column: span 12 / span 12; }
    .sm\:gap-10 { gap: 2.5rem; }
}

@media (min-width: 768px) {
    .md\:col-span-4 { grid-column: span 4 / span 4; }
    .md\:ol-span-12 { grid-column: span 12 / span 12; }
    .md\:row-start-auto { grid-row-start: auto; }
}

@media (min-width: 992px) {
    .lg\:col-span-1 { grid-column: span 1 / span 1; }
    .lg\:col-span-2 { grid-column: span 2 / span 2; }
    .lg\:col-span-4 { grid-column: span 4 / span 4; }
    .lg\:col-span-6 { grid-column: span 6 / span 6; }
    .lg\:col-span-8 { grid-column: span 8 / span 8; }
    .lg\:col-span-12 { grid-column: span 12 / span 12; }
    .lg\:mt-0 { margin-top: 0 !important; }
}

@media (min-width: 1200px) {
    .xl\:col-span-1 { grid-column: span 1 / span 1; }
    .xl\:col-span-2 { grid-column: span 2 / span 2; }
    .xl\:col-span-3 { grid-column: span 3 / span 3; }
    .xl\:col-span-4 { grid-column: span 4 / span 4; }
    .xl\:col-span-6 { grid-column: span 6 / span 6; }
    .xl\:col-span-8 { grid-column: span 8 / span 8; }
    .xl\:col-span-9 { grid-column: span 9 / span 9; }
    .xl\:col-span-12 { grid-column: span 12 / span 12; }
}

@media (min-width: 1400px) {
    .\32 xl\:col-span-9 { grid-column: span 9 / span 9; }
    .\32 xl\:col-span-12 { grid-column: span 12 / span 12; }
}
