body {
    background-color: #f8f9fa;
}

.navbar {
    background-color: #8b8c8d;
    color: white;
}

.navbar .nav-link {
    color: white;
}

.navbar .container-fluid{
    display: flex;
    justify-content: flex-end;
    align-items: end;
}



.sidebar {
    width: 250px;
    height: 160vh;
    color: white;
    position: fixed;
    left: 0;
    padding-top: 15px;
    z-index: 1;
    transition: transform 0.3s ease-in-out;
    background: linear-gradient(#004b7c, #004b7c);
}

.center-div{
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-align-items{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-bottom: 0.1px solid rgb(233, 230, 230);
}

.sidebar a:hover {
    background: linear-gradient(#287232, #079225);
    color:white;
    text-decoration: none;
}

.active{
    background: linear-gradient(#287232, #079225);
    color:white;
}

.content {
    padding: 20px;
    transition: margin-left 0.3s ease-in-out;
    margin-left:180px;
}

.toggle-btn {
    position: absolute;
    left: 10px;
    top: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.icon-size{
    font-size:60px;
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .content {
        margin-left: 0;
    }

    .sidebar.show {
        transform: translateX(0);
    }
}

.timelines .row{
    border-bottom:1px solid rgb(216, 212, 212);
    padding-top:6px;
   
}

.timelines{
    height:340px;
    overflow: auto;
    overflow-x: hidden;
    resize: horizontal;
}

.report-btn-primary {
    background: linear-gradient(#0076c4, #004b7c);
    width:250px;
    height:40px;
    border-radius:5px;
    border-color: none;
    color: white;
}

.report-btn-success {
    background: linear-gradient(#287232, #079225);
    width:250px;
    height:40px;
    border-radius:5px;
    border-color: none;
    color: white;
}

.report-bg{
    background: linear-gradient(#0076c4, #004b7c);
}