/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    background-color: #f4f6f9;
}

.sidebar {
    min-height: 100vh;
    background-color: #343a40;
    color: #c2c7d0;
}

.sidebar a {
    color: #c2c7d0;
    text-decoration: none;
    display: block;
    padding: 10px 1rem;
}

.sidebar a:hover, .sidebar a.active {
    background-color: #007bff;
    color: #fff;
    border-radius: 4px;
}

.sidebar .brand-link {
    border-bottom: 1px solid #4b545c;
    padding: 0.81rem 0.5rem;
    font-size: 1.25rem;
    color: rgba(255,255,255,.8);
}

.content-wrapper {
    background-color: #f4f6f9;
    min-height: calc(100vh - 57px);
}

.card {
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
    margin-bottom: 1rem;
}

.main-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #fff;
}

.nav-link {
    color: rgba(0,0,0,.5);
}

.small-box {
    border-radius: 0.25rem;
    box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    color: #fff;
    overflow: hidden;
}

.small-box h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    white-space: nowrap;
    padding: 0;
}

.small-box p {
    font-size: 1rem;
}

.bg-info { background-color: #17a2b8!important; }
.bg-success { background-color: #28a745!important; }
.bg-warning { background-color: #ffc107!important; color: #1f2d3d !important; }
.bg-danger { background-color: #dc3545!important; }

/* Dashboard Specifics from Image */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(0,0,0,.125);
    padding: 0.75rem 1.25rem;
    position: relative;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.btn-tool {
    background: 0 0;
    color: #adb5bd;
    font-size: .875rem;
    margin: -.75rem 0;
    padding: .25rem .5rem;
}

.table-valign-middle td {
    vertical-align: middle;
}
