body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200; /* Làm font chữ mảnh hơn */
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    margin: 0;
    /* background-color: #ecf1f5; */
    background-color: #fff;
    font-size: 14px;
}
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #3a7597;
    color: white;
    padding: 10px 20px;
}
.header .user-info {
    float: right;
}
.wrapper {
    display: flex;
    margin-top: 93px; /* Offset for fixed header */
    min-height: 100vh;
}

 .btn {
    background-color: #3a7597;
    color: white;
    border: none;
}

.btn:hover {
    background-color: #316a85;
}
.btn .btn-primary {
    background-color: #316a85;
}
.btn-primary:focus {
    background-color:rgb(50, 102, 126);
}
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    background-color: #d6dde5; /* Màu header */
    color: #373e44; /* Màu chữ header */
    padding: 10px;
    text-align: left;
    border: 1px solid #ccc; /* Viền header */
    border-bottom: 1px solid #fff !important;  /* Đổi màu viền dưới thành #999 */
}

.table td {
    background-color: #fff; /* Màu chi tiết */
    color: #000; /* Màu chữ chi tiết */
    padding: 10px;
    border: 1px solid #ccc; /* Viền chi tiết */
}

.table tr:nth-child(even) td {
    background-color: #f9f9f9; /* Màu nền xen kẽ cho các dòng chẵn */
}






.sidebar {
    width: 230px;
    background-color: #3a7597;
    color: white;
    transition: width 0.3s;
    overflow: hidden;
}
.sidebar.collapsed {
    width: 48px;
}
.sidebar .menu-item {
    display: flex;
    align-items: center;
    padding: 15px 0 0 10px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}
.sidebar .menu-item:hover {
    background-color: #3a7597;
}
.sidebar .menu-item i {
    margin-right: 10px;
}
.sidebar.collapsed .menu-item span {
    display: none;
}
.content {
    flex: 1;
    padding: 20px;
}
.toggle-btn {
    cursor: pointer;
    color: white;
    padding: 10px;
    text-align: right;
}
.menu-item i {
    width: 20px; /* Đặt kích thước cố định cho icon */
    height: 20px;
    margin-right: 10px; /* Thêm khoảng cách giữa icon và text */
    font-size: 16px; /* Giảm kích thước icon */
}
    .menu-item span {
        min-width: 160px;
}
svg {
    width: 20px; /* Đặt chiều rộng icon */
    height: 20px; /* Đặt chiều cao icon */
    fill: none; /* Không tô màu bên trong */
    stroke: currentColor; /* Màu viền theo màu chữ */
    stroke-width: 1; /* Độ dày viền */
    stroke-linecap: round; /* Đầu đường viền tròn */
    stroke-linejoin: round; /* Góc nối đường viền tròn */
}
h4 {
    display: inline-block;
}