General Styles
body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Sidebar */
.sidebar {
    background-color: #26A69A; /* Teal color */
    width: 200px; /* Fixed width for the sidebar */
    height: 100vh; /* Full height of the viewport */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.sidebar h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.nav-link {
    color: white !important;
    padding: 12px 20px;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: #1B5E20;
    border-radius: 5px;
}

.nav-link i {
    margin-right: 10px;
    color: #fff;
}

/* Main Content Area (Including Top Bar) */
.main-content {
    margin-left: 200px; /* Match the sidebar width */
    background-color: #f5f7fa;
    min-height: 100vh;
}

/* Top Bar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 60px;
    z-index: 900;
    position: sticky;
    top: 0;
}

.navbar-brand {
    font-size: 1rem;
    color: #6c757d;
}

.welcome-text {
    font-weight: 500;
    color: #6c757d;
}

.username {
    font-weight: 600;
    color: #333;
}

.nav-link i.fa-bell {
    color: #6c757d;
    font-size: 1.2rem;
}

.nav-link .badge {
    font-size: 0.6rem;
    padding: 3px 6px;
}

.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Main Content */
main {
    padding-bottom: 40px;
    padding-top: 20px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
}

/* Cards */
.card {
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

/* Progress Circle */
.progress-circle {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.progress-ring-circle {
    transition: 0.35s stroke-dashoffset;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.progress {
    stroke-linecap: round;
}

/* Lists (Group, Ministry, Activities, Services) */
.list-group-flush .list-group-item {
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    background-color: transparent;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list-group-item span {
    display: flex;
    align-items: center;
}

.list-group-item i {
    color: #FF9800; /* Orange */
    font-size: 1.2rem;
    margin-right: 10px;
}

.list-group-item .badge {
    background-color: #26A69A !important; /* Teal */
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 12px;
}

/* Transaction Chart */
#transactionChart {
    max-height: 300px;
}

/* Calendar */
#calendar {
    font-size: 0.9rem;
}

#calendar .fc-button {
    background-color: #26A69A;
    border: none;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
}

#calendar .fc-button:hover {
    background-color: #1B5E20;
}

#calendar .fc-daygrid-dot-event .fc-event-title {
    display: none;
}

#calendar .fc-daygrid-dot-event {
    background-color: transparent !important;
}

#calendar .fc-daygrid-day-number {
    color: #333;
}

#calendar .fc-daygrid-day-top {
    justify-content: center;
}

/* Notice and Message */
.list-group-item strong {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.list-group-item p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9rem;
}

.list-group-item small, .list-group-item .text-muted {
    font-size: 0.8rem;
    color: #999;
}

/* Footer */
footer {
    font-size: 0.85rem;
    color: #6c757d;
    padding: 20px 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 200px;
        transform: translateX(-200px);
        transition: transform 0.3s ease;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0 !important;
    }

    .card {
        margin-bottom: 15px;
    }

    .navbar-brand {
        font-size: 0.9rem;
    }

    .username.d-none {
        display: inline !important;
    }
    .nav-link.active {
        background-color: #ffffff33;
        font-weight: bold;
    }
}