﻿/* Page Wrapper */
#wrapper {
    display: flex;
    width: 100%;
}

/* Sidebar */
.sidebar {
    width: 250px;
    min-height: 100vh;
    transition: all 0.3s;
    background: #ffffff;
    border-right: 1px solid #ddd;
}

/* Collapsed Sidebar */
#wrapper.toggled .sidebar {
    margin-left: -250px;
}

/* Sidebar menu buttons */
.list-group-item {
    padding: 12px 18px;
    font-size: 15px;
    border: none;
    color: #333;
}

.list-group-item:hover {
    background: #eef5ff;
    color: #0d6efd;
}

/* Content */
#page-content-wrapper {
    width: 100%;
    background: #f8f9fc;
    min-height: 100vh;
}

/* Top Navbar */
.navbar {
    height: 75px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* Buttons */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Table styling */
table {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
}

table th {
    /*background-color: #e6f0ff !important;*/
    font-weight: 700;  /*600*/
    /*font-size: 14px;*/
}

table td {
    background: #fff;
}

/* Scroll behaviour */
body {
    background: #f4f6fb;
}