/* color code */
/* #205867 */
/* 205167 */
/*  */
:root {
    --bg-color: #fcfcfc;
    --card-color-1: #999966;
    --card-color-2: #cfcfcf;
    --gray-color: #babbab;
    --orange-color: orange;
    --green-color: #008000;
    --icon-color: #000;
    --main-color: #212529;
    --light-main-color: #4c4747;
}
body {
    background: var(--bg-color);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    min-height: 100vh;
}
.loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
a {
    text-decoration: none;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
#loading-indicator {
    display: none;
}
.spinner-border {
    width: 3rem;
    height: 3rem;
}
/* Additional styling for the loader */
.bg-info {
    background-color: var(--main-color) !important;
}
.text-primary {
    color: var(--card-color-2) !important;
}
.dataTables_length label {
    font-size: 12px;
    text-transform: lowercase;
}
li {
    text-decoration: none;
}
.dataTables_filter label {
    font-size: 12px;
    text-transform: lowercase;
}
.nav-item .nav-link {
    color: #fff;
}
.nav-link i {
    color: var(--bg-color);
}
.nav-item:hover .nav-link {
    background-color: var(--card-color-1);
}
.heading__style {
    font-size: 1vw;
}
/* footer  */
footer {
    margin: 0;
    padding: 0;
}
.fixed-bottom {
    z-index: 0;
}
footer p {
    font-size: 0.6rem;
    font-weight: 400;
}
#header {
    position: fixed;
    top: 0;
    z-index: 5000;
}
body::-webkit-scrollbar {
    width: 10px;
}
body::-webkit-scrollbar-track {
    background: var(--gray-color);
}
body::-webkit-scrollbar-thumb {
    color: var(--orange-color);
}
.vertical-nav {
    background-color: var(--main-color) !important;
    min-width: 13rem;
    width: 15rem;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
    z-index: 1;
    overflow-x: hidden;
}
.vertical-nav::-webkit-scrollbar {
    display: none;
}
.page-content {
    width: cal(100% - 15rem);
    margin-left: 15rem;
    transition: all 0.4s;
    margin-bottom: 0 !important;
}
#sidebar.active {
    margin-left: -15rem;
}
#content.active {
    width: 100%;
    margin: 0;
}
.active-navigation {
    color: rgb(255, 165, 0) !important;
}
.separator {
    margin: 3rem 0;
    border-bottom: 1px dashed #504848;
}
/* .text-uppercase {
  letter-spacing: 0.1rem;
} */
.text-gray {
    color: #aaa;
}
.vertical-nav .nav-item {
    background-color: var(--light-main-color);
    text-transform: uppercase;
    font-size: 0.8rem;
    margin: 2px 0 !important;
    width: 100%;
}
.text-primary {
    color: #7579e7 !important;
}
#sidebarCollapse {
    display: inline-block;
}
#sidebar-icon-img {
    width: 100%;
}
.divider {
    background-color: white;
    margin: 5px 0;
    border-bottom: 1px solid var(--bg-color);
}
/* dropdown menu */
.dropbtn {
    /* background-color: #3498DB; */
    background-color: transparent;
    color: var(--orange-color);
    text-decoration: underline;
    /* padding: 16px; */
    font-size: 16px;
    border: none;
    cursor: pointer;
}
.dropbtn:hover,
.dropbtn:focus {
    color: var(--bg-color);
}
.dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
    align-items: center;
    text-align: center;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #205867;
    min-width: 16rem;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.show {
    display: block;
}
.first {
    position: fixed;
    top: -10px;
    left: 55%;
    transform: translate(-50%);
}
.first img {
    height: 16%;
    width: 16%;
    margin: auto;
    z-index: 5000;
}
.header-content-wrap {
    min-width: calc(100% - 17rem);
    width: 100%;
}

#content-header {
    display: flex;
    justify-content: space-between;
    column-gap: 2px;
}
/* main content header */
@media screen and (max-width: 769px) {
    .header-content-wrap {
        display: block;
    }
    .first img {
        width: 100%;
    }
    .secand {
        width: 100vw;
    }
    .data-time {
        border: 2px solid rgba(0, 172, 230, 0.3);
        font-size: 0.8rem;
    }
    .thired {
        display: none;
    }
}

/* change width 720 t0 800 */
@media screen and (max-width: 769px) {
    .vertical-nav {
        width: 100px;
    }
    #sidebar {
        margin-left: -17rem;
        width: 100px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
        margin: 0;
    }
    #contetn.active {
        margin-left: 17rem;
        width: calc(100% - 17rem);
    }
}

/* dashbord  */
/* dashbord style */
.myCard {
    border-radius: 20px;
    padding: 5px 3px;
}
.component {
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.img-cpt {
    text-align: center;
}
.img-cpt1 {
    text-align: center;
    margin-top: 0px;
    text-align: center;
}
.icons {
    display: inline-block;
    margin: 0 auto;
    width: 13dvh;
    /* font-size:larger; */
    object-fit: contain;
    aspect-ratio: 1/1;
    mix-blend-mode: color-burn;
}
.number {
    color: var(--green-color);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}
.heading {
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0;
    color: #212529;
}
.main-heading {
    margin-top: 0.5rem;
    color: #ffc107;
    font-size: 1rem;
    font-weight: 600;
}
.green {
    color: var(--green-color);
}
.scrolling-btn {
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.scrolling-btn i {
    padding: 5px;
    cursor: pointer;
}
.scrolling-btn ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 24px;
    margin: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.scrolling-btn ul::-webkit-scrollbar {
    display: none;
}
.scrolling-btn a {
    color: var(--bg-color);
    text-decoration: none;
    background-color: rgba(212, 204, 204, 0.788);
    padding: 1.5vh 5vw;
    display: inline-block;
    border-radius: 4px;
    user-select: none;
    white-space: nowrap;
    gap: 10px;
}
.scrolling-btn a.active {
    background-color: #5cefe5;
    color: black;
}
.scrolling-btn li {
    list-style: none;
    color: white;
    width: 40vw;
}
.scrolling-btn .right-btn,
.scrolling-btn .left-btn {
    height: 100%;
    width: 50px;
    top: 0;
    align-items: center;
    display: none;
    font-size: 50px;
}
.scrolling-btn .right-btn.active,
.scrolling-btn .left-btn.active {
    display: flex;
}
.scrolling-btn .right-btn {
    right: 0;
    justify-content: right;
}
/* Registraion table  */
.p-text {
    font-size: 1vw;
    font-weight: 400;
}
@media screen and (max-width: 720px) {
    .p-text {
        font-size: 1Frem;
        font-weight: 400;
    }
}
@media screen and (min-width: 420px) and (max-width: 720px) {
    .p-text {
        font-size: 1rem;
    }
}
/* All tables  */
.tables > table {
    width: 100%;
}
.tables table thead {
    padding: 10px;
    background-color: rgb(9, 153, 243);
    color: white;
    text-align: center;
}
.tables table thead th {
    padding: 10px 0;
}
.tables table tbody {
    color: black;
    font-weight: 600;
}
.tables table tr td {
    text-align: center !important;
    padding: 10px;
}
.tables table tbody tr {
    border: 2px solid skyblue;
    padding: 10px;
}

/* login and signup page style */
.login-page {
    height: 100vh;
    background-color: rgb(195, 224, 225);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
}
.login__box {
    width: 40vw;
}
@media screen and (max-width: 1000px) {
    .login__box {
        width: 90vw;
        margin-top: 10vh;
    }
}
.newAccount {
    width: 50%;
    margin: auto;
}
@media screen and (max-width: 1000px) {
    .newAccount {
        width: 90vw;
        margin-top: 10vh;
    }
}
/* index.php  css */
.canvas-box {
    background-color: var(--bg-color);
    border-radius: 10px;
    border-width: 0;
    height: 100%;
    max-height: 450px;
    /* color: #008000; */
    cursor: pointer;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 1em;
    padding: 5px 5px;
    transition: all 200ms;
    box-shadow: rgba(25, 25, 25, 0.04) 0 0 1px 0, rgba(0, 0, 0, 0.1) 0 3px 4px 0;
}
.table-box {
    position: relative;
    padding: 10px;
}
.table-box-text {
    font-size: 0.7rem;
    color: var(--gray-color);
    margin-left: 3px;
}
.table-box i {
    font-size: 2rem;
}
.chart-container {
    position: relative;
    margin: auto;
    width: 100%;
    height: 70%;
    max-height: 250px !important;
}
.table-container {
    height: 300px;
}
.table-container .table-responsive {
    height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-padding-top: 0;
    scroll-margin: 0;
    scrollbar-width: 2px;
    margin: 0;
    padding: 0;
}
.table-container .table-responsive::-webkit-scrollbar {
    width: 3px;
}
.table-responsive::-webkit-scrollbar-track {
    background: var(--gray-color);
}
.table-responsive::-webkit-scrollbar-thumb {
    background: var(--orange-color);
}
.slick-carousel {
    /* margin: 0 auto; */
    width: 100%;
}
/* The width of each slide */
.slick-slide {
    width: 150px;
    margin: 0 8px;
}
/* Color of the arrows */
.slick-next::before,
.slick-prev::before {
    color: var(--orange-color) !important;
}
.autoplay img {
    width: 100%;
    height: 100px;
}
.table-card {
    width: 10vw;
}
@media screen and (max-width: 720px) {
    .table-card {
        width: 30vw;
    }
}
#dash-table td {
    font-size: 0.6rem;
}
#dash-table th {
    font-size: 0.6rem;
}
canvas {
    margin-top: 10px;
}
.quickAction .quick_action:nth-child(even) {
    color: #ffc107;
    background-color: #fff;
}
.quickAction .quick_action:nth-child(odd) {
    background-color: #fff;
    color: #65e1e1;
}
/* .quick_action{
  background-color: #999966;
} */
.quick_action .nav-link:hover {
    background-color: transparent;
}
#table-box {
    background-color: #fff;
    border-radius: 10px;
    border-width: 0;
    height: auto;
    color: var(--green-color);
    cursor: pointer;
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 1em;
    padding: 5px 5px;
    transition: all 200ms;
    box-shadow: rgba(25, 25, 25, 0.04) 0 0 1px 0, rgba(0, 0, 0, 0.1) 0 3px 4px 0;
}
#card1 {
    background: #fff;
}
#card2 {
    background: #fff;
}
#card3 {
    background-color: #fff;
}
#card4 {
    background-color: #fff;
}
/* table design */
.dataTable table thead {
    background-color: var(--light-main-color);
    color: #fff;
    font-size: 1rem;
}
.roomSeatTable thead tr {
    background-color: var(--light-main-color);
}
.roomSeatTable tr {
    /* background: #fff; */
    color: #000;
    text-align: center;
}
.roomSeatTable th {
    font-size: 0.8rem;
}
.roomSeatTable tbody td {
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: #000;
    text-align: center;
    height: 40px;
}
/* .table-striped>tbody>tr:nth-of-type(odd)>* {

    color: #000;
    border-bottom:3px;

} */
.roomSeatTable tbody td i {
    /* margin: 0; */
    padding: 0;
    font-size: 1rem;
}

.roomSeatTable tbody input {
    font-size: 1rem !important;
    width: 80%;
    height: 27px;
    margin: auto auto;
}
.roomSeatTable tbody input {
    font-size: 0.8rem !important;
}
.roomSeatTable tbody td select {
    font-size: 0.8rem !important;
}
.roomSeatTable tbody option {
    font-size: 1rem !important;
}
.roomSeatTable tbody td > select {
    padding-top: 0;
    font-size: 1rem;
}
.roomSeatTable tbody input[type="file"] {
    width: 80%;
    text-align: center;
    align-content: center;
    padding-top: 0;
}
.roomSeatTable tbody input[type="date"] {
    width: 90%;
}
.expensesTable th {
    font-size: 0.8rem;
}
.expensesTable tbody td {
    font-size: 0.9rem;
    margin: 0;
    padding: 0;
    color: var(--bg-color);
    text-align: center;
    height: 20px;
}
.expensesTable tbody tr:nth-child(odd) {
    background-color: var(--card-color-2);
}
.expensesTable tbody tr:nth-child(even) {
    background-color: var(--card-color-1);
    color: var(--bg-color);
}
.expensesTable tbody input {
    font-size: 1rem !important;
    width: 80%;
    height: 27px;
    margin: auto auto;
}
.expensesTable tbody option {
    font-size: 1rem !important;
}
.expensesTable tbody td {
    padding-top: 0;
    font-size: 1rem !important;
}
.expensesTable tbody input[type="file"] {
    width: 80%;
    text-align: center;
    align-content: center;
    padding-top: 0;
}
.expensesTable tbody input[type="date"] {
    width: 90%;
}
.expensesTable tbody input:focus {
    box-shadow: none;
}
.expensesTable tbody select:focus {
    box-shadow: none;
}
.row1 {
    background-color: #575151 !important;
}
.row2 {
    background-color: #9c9696 !important;
}
/* Registration-from */
.Registration-from label {
    font-size: 0.6rem;
}
.Registration-from h1,
.Registration-from h4,
.Registration-from h6 {
    font-size: 0.8rem;
    background-color: var(--card-color-1);
    color: var(--bg-color);
}
.Registration-from input {
    font-size: 0.8rem !important;
}
.Registration-from select {
    /* height:3.5vh; */
    font-size: 0.8rem !important;
}
.Registration-from input:focus {
    box-shadow: none;
    text-transform: none;
}
.Registration-from textarea:focus {
    box-shadow: none;
}
.Registration-from .form-select {
    box-shadow: none;
    /* border-color: #504848; */
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.Registration-from .form-control-sm {
    border: 1px solid #babbab !important;
}
.Registration-from .form-control-sm:focus {
    border: 1px solid #5cefe5 !important;
}
@media (max-width: 720px) {
    .Registration-from .form-control-sm {
        width: 100% !important;
    }
    .Registration-from h1,
    h4,
    h6,
    label,
    textarea {
        font-size: 0.7rem;
    }
}
@media (min-width: 720px) and (max-width: 1000px) {
    .Registration-from .form-control-sm {
        width: 100%;
    }
}
.btn {
}
.btn-success {
    background-color: gray !important;
}

.account .form-group {
    padding: 10px;
}
.account .card {
    font-size: 17px;
    box-shadow: 0px 0px 6px 4px grey;
    padding: 20px;
    background: #d3dae2;
}
/*datatable*/
table.dataTable thead th,
table.dataTable thead td,
table.dataTable tfoot th,
table.dataTable tfoot td {
    text-align: center !important;
}
/*end data table*/
/* End account Register  */
.expensesfilter label {
    font-size: 12px;
}
.expensesfilter input {
    height: 32px;
}
.expensesfilter input :focus {
    outline: none;
}

table .dataTable tbody th,
table.dataTable tbody td {
    padding: 0px !important;
}
