:root {
    --primary-color: #0057a8;
    /* Bootstrap Primary Blue */
    --saylani-green: #66b032;
    /* Approximate Saylani Green */
    --saylani-green-light: #e8f5e9;
    --text-color: #333;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
}

.branding-section {
    background-color: #f8f9fa;
    overflow: hidden;
    /* For the wave */
}

.logo-img {
    max-width: 200px;
    height: auto;
}

.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 0;
}

.wave-container svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 300px;
    transform: rotateY(180deg);
}

.wave-container path {
    fill: var(--saylani-green);
    /* Using Saylani Green */
    opacity: 0.2;
    /* Light and subtle */
}

.login-card {
    width: 100%;
    max-width: 450px;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    background-color: #fcfcfc;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
    background-color: #fff;
}

.role-toggle {
    background-color: #f1f3f5;
}

.role-toggle .btn {
    color: #6c757d;
}

.role-toggle .btn-check:checked+.btn {
    background-color: #fff;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.btn-primary {
    padding: 12px;
    border-radius: 8px;
}

.btn-outline-secondary {
    padding: 10px;
    border-radius: 8px;
    border-color: #dee2e6;
    color: var(--text-color);
}

.btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: var(--text-color);
    border-color: #c1c9d0;
}

/* Dashboard Styles */
#wrapper {
    overflow-x: hidden;
}

#sidebar-wrapper {
    min-height: 100vh;
    margin-left: -15rem;
    -webkit-transition: margin .25s ease-out;
    -moz-transition: margin .25s ease-out;
    -o-transition: margin .25s ease-out;
    transition: margin .25s ease-out;
    width: 15rem;
}

#sidebar-wrapper .sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
    width: 15rem;
}

#page-content-wrapper {
    width: 100%;
}

#wrapper.toggled #sidebar-wrapper {
    margin-left: 0;
}
@media (min-width: 768px) {
    #sidebar-wrapper {
        margin-left: 0;
    }

    #page-content-wrapper {
        min-width: 0;
        width: 100%;
    }

    #wrapper.toggled #sidebar-wrapper {
        margin-left: -15rem;
    }
}

.list-group-item {
    border: none;
    padding: 20px 30px;
}

.list-group-item.active {
    background-color: var(--saylani-green);
    color: white !important;
    border-left: 5px solid #2e7d32;
    font-weight: bold;
}

.list-group-item.active .fab,
.list-group-item.active .fas {
    color: white;
}

.list-group-item:not(.active) {
    color: #6c757d;
}

.list-group-item:hover {
    background-color: var(--saylani-green-light);
    color: var(--saylani-green);
}

.stats-card {
    transition: transform 0.3s;
    border-radius: 15px;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.icon-circle {
    width: 40px;
    height: 40px;
}

.btn-white:hover {
    background-color: #f8f9fa !important;
}

.bg-primary-subtle {
    background-color: #cfe2ff;
}

.bg-danger-subtle {
    background-color: #f8d7da;
}

.bg-success-subtle {
    background-color: #d1e7dd;
}

.bg-warning-subtle {
    background-color: #fff3cd;
}

.bg-info-subtle {
    background-color: #cff4fc;
}

/* Report Form Styles */
.form-control.bg-light,
.form-select.bg-light {
    background-color: #f8f9fa !important;
}

.urgency-btn {
    padding: 10px;
    font-weight: 500;
    color: #495057;
    background-color: #fff;
}

.urgency-btn:hover {
    background-color: #f8f9fa;
}

.btn-check:checked+.urgency-btn {
    background-color: #f8f9fa;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    font-weight: bold;
}

.icon-square {
    width: 35px;
    height: 35px;
}