body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.sidebar {
    background-color: #006b35;
    min-height: 100vh;
    color: white;
    transition: all 0.3s;
    position: fixed;
	max-height: 100vh;
    overflow: auto;
}

.sidebar .nav-link {
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 5px;
    margin: 5px 10px;
    transition: all 0.3s;
    font-weight: 600;
}

.sidebar .nav-link:hover, .sidebar .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.sidebar .nav-link i {
    margin-right: 10px;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content {
    padding: 20px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

/* Enhanced stat cards */
.stat-card {
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: currentColor;
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.stat-card i {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Enhanced navbar */
.navbar {
    padding: 1rem;
    background: white !important;
    /* border-radius: 15px; */
}

.search-bar {
    position: relative;
    max-width: 300px;
}

.search-bar input {
    padding-left: 40px;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    background: #f8f9fa;
}

.search-bar i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
}


.fito-btn{
    background: #006b35;
    color: #fff200;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
}

.form-select, .form-control{
    border-radius: 0;
}
/* .logout-link{
    background-color: #fff200;
    color: #006b35 !important;
    font-weight: 600;
    border: none;
}
.logout-link:hover{
    color: #fff200 !important;
} */
.card{
    border-radius: 0;
}

/* ... existing styles ... */

/* Login page styles */
.input-group-text {
    background-color: #fff;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.input-group-text i {
    color: #006b35;
}

/* Make the fito-btn work well as a block button */
.fito-btn.btn-lg {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

/* Style for the forgot password link */
a.text-muted:hover {
    color: #006b35 !important;
    text-decoration: none;
}

@media (max-width: 767.98px) {
    .sidebar {
        margin-left: -100%;
        transition: 0.3s;
    }

    .sidebar.active {
        margin-left: 0;
        z-index: 1000;
    }

    .content {
        width: 100%;
    }
}
.navbar-toggler{
    z-index: 9999;
}
.close-icon {
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 5px;
    color: #fff200;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}
.form-control:focus{
    border-color: #006b35;
    box-shadow: none;
}
.form-select:focus{
    border-color: #006b35;
    box-shadow: none;
}
.card-header{
    background-color: #006b35 !important;
    color: #fff200!important
}
