/* =================Import Styles Start====================== */
@import url("https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap");

/* ==================Main Styles Start======================= */
* {
    font-family: "PT Sans", sans-serif;
}
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

:root {
    --mainColor: #00122b;
    --secondColor: #bc9154;
    --whiteColor: #fff;
    --navyBlue: #0b1539;
    --GreyColor: #4c5868;
    --navyBlue2: #0b1538;
    --greenColor: #67f941;
    --darkColor: #1b1b1b;
    --orange:#fc6510;
    --orangelight:#ff9151;
    --gradientColor: linear-gradient(to bottom, #252525, #1c1c1c, #111111);
    --gradientColor2: linear-gradient(to bottom, #000827, #030b26, #000827);
}

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (max-width: 576px) {
    .heightimage {
        height: 300px;
    }
}

@media (min-width: 992px) {
    .heightimage {
        height: 250px;
    }
}

 @media (max-width: 577px) {
    .heightimage {
        height: 300px;
    }
}
 @media (min-width: 1200px) {
    .heightimage {
        height: auto;
    }
}

.bordercolor{
    border: 1px solid var(--mainColor)
}
.bordercolor:hover{
    border: 1px solid var(--mainColor)
}

.dashboardcardheader{
    background: #022555;
    color: #fff
}

.dashboardcardfooter{
    background: #022555;
    color: #fff
}

.text_color{
    color: #022555 !important;
}
.text_color:hover{
    color: #022555 !important;
}

.donebutton{
    background:#c1ffe5;
    color: #19835c;
    padding: 3px 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content:center

}

.holdbutton{
    background:#fc6868;
    color: #ffffff;
    padding: 3px 3px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content:center

}

.borderboxblue{
    color:#000000;
    background: #e7f1ff;
    border: 1px solid #acbdd3;
    padding: 5px 10px;
    border-radius:5px;
}


a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

.btn:focus,
.btn:active,
.btn:hover,
.form-control:focus,
.form-control:active,
.form-control:hover {
    outline: none;
    box-shadow: none; /* Optional: Remove box-shadow as well */
}

.textColor{
    color: var(--mainColor)
}


/* ===============Login Page Design Start=================== */

.loginBackground {
    height: 100vh;
    width: 100%;
    /* background: url("../assets/images/back1.jpg"); */
    background: var(--gradientColor2);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: scroll;
    padding: 10px 0;
}

.logincontainer {
    /* height: auto; */
    width: 100%;
    height: 100%;
}

.loginleft {
    background: url("../assets/images/back1.jpg");
}
.imageContent {
    display: flex;
    height: 100%;
    justify-content: end;
}

.buttonHold{
    background-color: var(--orange);
    color: var(--whiteColor);
}
.buttonHold:hover{
    background-color: var(--orangelight);
    color: var(--mainColor);
}

.buttonDesignPrint {
    background-color: var(--GreyColor);
    color: var(--whiteColor);
}

.buttonDesignPrint:hover {
    /* background-color: var(--navyBlue); */
    border: 1px solid var(--GreyColor);
    color: var(--GreyColor);
}

.buttonDesign {
    background-color: var(--navyBlue);
    color: var(--whiteColor);
}
.buttonDesign:hover {
    background-color: var(--navyBlue);
    color: var(--whiteColor);
}


/* ===============Login Page Design End=================== */

/* =================================================== */
/* ===============Sidebar Styles Start================ */
/* =================================================== */

#sidebar-wrapper {
    position: fixed;
    height: 100vh;
    overflow-y: auto; /* Enable scrolling for sidebar if needed */
}
.wrapper {
    display: flex;
    height: 100%;
    overflow: hidden;
}

/* .main {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: var(--whiteColor);
} */
.main {
    flex: 1;
    overflow-y: auto; /* Enable scrolling for main content */
}
#sidebar {
    width: 70px;
    min-width: 70px;
    z-index: 10000;
    transition: all 0.15s ease-in-out;
    display: flex;
    flex-direction: column;
    background-color: var(--navyBlue);
    /* position: fixed;
    height: 100vh; */
}
#sidebar.expand {
    width: 260px;
    min-width: 260px;
}

#toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.5rem;
}
#toggle-btn i {
    font-size: 1.5rem;
    color: var(--whiteColor);
}
.sidebar-logo {
    margin: auto 0;
}
.sidebar-logo a {
    color: var(--whiteColor);
    font-size: 1.15rem;
    font-weight: 600;
}
#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}
.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}
a.sidebar-link {
    padding: 0.625rem 1.625rem;
    color: var(--whiteColor);
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}
.sidebar-link i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
}
a.sidebar-link:hover,
.sidebar-item.active {
    background-color: rgba(255, 255, 255, 0.075);
    border-left: 3px solid var(--secondColor);
}

.sidebar-item {
    position: relative;
}
#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: var(--navyBlue);
    padding: 0;
    min-width: 15rem;
    display: none;
}
#sidebar:not(.expand) .sidebar-item:hover .has-dropdown + .sidebar-dropdown {
    display: block;
    max-height: 15rem;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 0.075rem 0.075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all 0.2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all 0.2s ease-out;
}

@media (max-width: 768px) {
    #sidebar {
        display: none;
    }
    #sidebar.expand {
        display: none;
    }
}

@media (min-width: 760px) {
    #toggle-sidebar-btn {
        display: none;
    }
}
/* Hamburger button styles */
#toggle-sidebar-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--darkColor);
    cursor: pointer;
}

#toggle-sidebar-btn:focus {
    outline: none;
}

/* =================================================== */
/* ===============Sidebar Styles End================== */
/* =================================================== */

/* =================================================== */
/* ================Topbar Styles Start================ */
/* =================================================== */

.roundedCircle {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: #00122b;
}

/* =================================================== */
/* ================Topbar Styles End================== */
/* =================================================== */

.yellowBatch {
    border-radius: 0px 10px 10px 0px;
}

.bg-blueColor {
    background-color: #e6effc;
}
.bg-butterColor {
    background-color: #fbddd1;
}
.CardBackground {
    background: url("../assets/images/Frame5.png");

    background-repeat: no-repeat;
}

//=====================================
//========pagination design============
//=====================================
.pagination > li > a,
.pagination > li > span {
    color: var(--navyBlue);
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: var(--navyBlue);
    border-color: var(--navyBlue);
}

.topbar.light-mode {
    background-color: #ffffff;
    color: #000000;
}
.topbar.dark-mode {
    background-color: #1a1a1a;
    color: #ffffff;
}

.align-middle,
.align-middle img {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
