﻿#wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar-wrapper {
    min-width: 260px;
    max-width: 260px;
    background-color: #f0f2f5; /* Light grey/blue background */
    color: #333;
    height: 100vh;
}

    #sidebar-wrapper .sidebar-heading {
        font-size: 1.2rem;
        padding: 1rem;
        color: #333;
    }

    #sidebar-wrapper .list-group-item {
        background-color: transparent;
        color: #333;
        border: none;
        padding: 0.75rem 1.25rem;
    }

        #sidebar-wrapper .list-group-item:hover {
            background-color: #dce0e5;
        }

#page-content-wrapper {
    width: 100%;
    padding: 20px;
    background-color: #f8f9fa;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.rounded-circle {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.sidebar-heading img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}


/*Stat Card*/

.stat-card {
    min-width: 160px;
    min-height: 120px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

    .stat-card:hover {
        transform: scale(1.04);
    }

.stat-value {
    font-size: 2.5rem;
}

.stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.05rem;
}


/*Info Card*/

.info-card-hover {
    transition: transform 0.2s ease-in-out;
}

    .info-card-hover:hover {
        transform: scale(1.04);
    }


/*Banner*/

.alert.fade {
    opacity: 0;
}

    .alert.fade.show {
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
