* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #13171f;
}

header {
    background: #084149;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

header p {
    font-size: 1.2rem;
}

nav {
    background: #13171f;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1rem;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    text-align: center;
    padding: 2rem;
    background: url('/static/img/banner.png') no-repeat center/cover;
    color: #fe3602;
}

.hero button:hover {
    background: #fe3602;
}

/* .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 2rem;
    gap: 2rem;
} */

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 3.93rem;
    gap: 2rem;
}

.feature {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
}

footer {
    text-align: center;
    background: #13171f;
    color: #fff;
    padding: 1rem 0;
    margin-top: 2rem;
}

footer p {
    font-size: 0.9rem;
}

.footer-section{
    padding: 24px;
}

.menu-bar {
    width: 100%;
    column-gap: 10px;
}

/* .paused{
    border: solid 1px rgb(252, 217, 18);
    padding: 5px 10px;
    border-radius:10px;
} */

/* .enable{
    border: solid 1px rgb(41, 141, 2);
    padding: 5px 10px;
    border-radius:10px;
} */

/* this is the header style section  */
.btn-add {
    /* width: 90% !important; */
    text-align: end;
}
.btn-add img {
    width: 50px;
    height: 50px;
}
.left_sec {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frm_cancel_btn {
    background: #6c757d;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    padding: 5px;
}
.frm_cancel_btn:hover{
    color: #fff;
}

.sub_save_btn {
    /* background: #0d6efd; */
    background-color: #fe3602;
    border-radius:5px;
    text-align: center;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    padding: 5px;
}

.sub_save_btn:hover{
    background-color: #e63206 !important;
}

.new_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form_sec {
    background: #e7e7e7;
    padding: 20px;
    margin: 30px 0px 30px 0px;
    box-shadow: 0px 0px 10px #e7e7e7;
}

.client_drp_btn {
    display: flex;
    align-items: center;
}

.checkbox_client_row {
    width: 69%;
    margin-left: auto;
}

.client-header{
    display:flex;
    align-items: center;
    justify-content: space-between;
}
/* side bar */
/* Sidebar Styles */
.sidebar-link.active {
    color: #19383F;
    background-color: #D0E4E7;
    /* cursor: default; */
}

.sidebar-link.disabled {
    pointer-events: none;
}

.sidebar-link:hover {
    background-color: #067c8b;
    color: #fff;
    /* background-color: #FFE7E2;  */

}

.sidebar {
    position: static;
    background-color:#D0E4E7;
    color:#000;
    padding-top: 20px;
    border: solid 1px;
}

/* Sidebar Links */
.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    /* padding: 5px; */
    padding: 5px 8px;
}

.sidebar ul li a {
    /* color: #084149; */
    color:#19383F;
    text-decoration: none;
    display: block;
    padding: 7px 0px;
    /* border:solid 2px #9eb5b9; */
    border:solid 0.5px #19383F;
    text-align: center;
    border-radius: 5px;
    background-color:#fff;
}

.custom-button-sidebar {
  position: static;
  background-color: #CDDFE2;
  color: #000;
  padding-top: 15px;
  border: solid 0.5px;
  /* height: max-content; */
  min-width: 180px;
}

.sidebar-left-p {
   padding-left: 192px;
}

/* Toggle Button */
.toggle-btn {
    display: none;
    position: fixed;
    font-size: 24px;
    background: #084149;
    color: white;
    width: 50px;
    height: 45px;
    border-radius: 8px;
    right: 0px;
    top: 0;
    border: none;
    padding: 4px 15px;
    z-index:99;
    cursor: pointer;
}

/* this is the table new css  */
div#report-content .table-responsive table.table thead {
    position: sticky;
    top: 0;
    background-color: #f1f1f1;
    z-index: 1;
}

.status-indicator {
    display: inline-block;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

.status-processed {
    background-color: green;
}

.status-processing {
    background-color: orange;
}

.status-unknown {
    background-color: gray;
}

.no-text-select {
    user-select: none;
}

/* 4-2-26 s */

.client-details .table-scroll-top{
    /* max-height: 470px; */
    max-height: calc(100vh - 165px);
    overflow-y: auto;
}

.client-details table.table-striped{
    margin-top: 0px;
}
/* Mobile View */

@media screen and (min-width: 1440px) {
    .sidebar-left-p{
        padding-left: 192px;
    }
}

@media screen and (max-width: 1024px) {
    .sidebar-left-p{
        padding-left: 192px;
    }
}

@media screen and (max-width: 768px) {
    .sidebar-left-p{
        padding-left: 10px;
    }

    .client-header {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .client-header .text-end .btn-add{
        text-align:left;
    }

    .sidebar {
        transform: translateX(-170%); /* Hide sidebar */
        width:180px;
        top: 137px;
        transition: transform 0.4s ease-in-out;
    }

    .toggle-btn {
        display: block; /* Show toggle button */
    }

    .sidebar.active {
        transform: translateX(0); /* Show sidebar */
    }
}

@media screen and (max-width: 767px) {
    .menu-bar.d-md-flex {
        display: flex
    }
}
/* end */