:root {
    --primary-color: #2eb7fd;
    --secondary-color: #171928;
    --text-color: #333;
    --background-color: #f4f4f4;
}

/*  PADDING HORIZONTAL 0 */
.ph-none{
    padding-left: 0;
    padding-right: 0;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: "Poppins", system-ui;
}

.container-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-image {
    background: url('../images/login-screen.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.login-form {
    padding: 40px;
    width: 100%;
}
.login-form input {
    border-right: 0;
    border-left: 0;
    border-top: 0;
    border-radius: 0;
    border-color: #e1e1e1;
}
.login-form input:focus{
    box-shadow: none;
}
.login-form label{
    color: #333;
}
.login-form label i{
    color: #17192894;
}
.forget_password{
    font-size: 13px;
    font-style: italic;
}
.login_password{
    position: relative;
}
.password_show_icon{
    position: absolute;
    right: 0;
    bottom: 5px;
}
.password_show_icon span{
    background: transparent;
    border: none;
    color: var(--secondary-color);
}

.main-logo{
    width: 100%;
    text-align: center;
}
.main-logo img{
    max-width: 120px;
    margin: 0 0 30px auto;
}
.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 100%;
}
.btn-primary:hover{
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* DASHBOARD */

.sidebar {
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: var(--secondary-color);
    padding-top: 20px;
    transition: width 0.3s;
}
.sidebar a {
    color: #fefefe;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}
.sidebar a img{
    max-width: 18px;
    vertical-align: top;
    margin-right: 5px;
    box-sizing: border-box;
}
.sidebar a:hover, .sidebar .active a {
    background-color: var(--primary-color);
}
.sidebar a:hover .menu-icon, .sidebar .active .menu-icon{
    filter: brightness(0) invert(1);
}
.submenu {
    padding-left: 20px;
    display: none;
}

.show .submenu{
    display: block;
}
.main {
    margin-left: 250px;
    padding: 50px 20px 20px 20px;
    transition: margin-left 0.3s;
}
.topbar {
    height: 60px;
    background-color: var(--secondary-color);
    color: #fefefe;
    display: block;
    padding: 15px 20px;
    position: fixed;
    width: calc(100% - 250px);
    top: 0;
    right: 0;
    z-index: 100;
}
.topbar h4{
    float: left;
}
.topbar .float-right{
    float: right;
}
#sidebar-menu{
    max-height: 400px;
    overflow-y: auto;
}

.table-container {
    margin-bottom: 30px;
}
canvas {
    max-width: 100%; 
    height: 300px; 
}
.cloned-field {
    float: left;
    position: relative;
}
.cloned-field:nth-child(even) { 
    padding-left: 10px;
}
.cloned-field:nth-child(odd) { 
    padding-right: 10px;
}
span.remove-icon {
    position: absolute;
    top: 0;
    right: 5px;
    background: #ff8181;
    padding: 0px 5px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
}
span.remove-icon:hover { 
    background: #c72121;
}
.addMoreBtn{
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #171928;
    font-weight: 500;
    text-decoration: underline;
    font-style: italic;
    font-size: 13px;
}
.addMoreBtn:hover{ 
    color: #000;
}
.form-box{
    padding: 15px;
    box-shadow: 0 0 10px 5px #eee;
    margin: 20px 0;
}
.invoiceTable thead tr{
    background: #2eb7fd;
    color: #fff;
}
.invoiceTable thead th{
    font-weight: 500;
    font-size: 15px;
}
#fieldContainer{
    float: left;
}
.note_text{
    font-size: 13px;
    font-style: italic;
    margin-bottom: 0;
    font-weight: 600;
    color: red;
}
thead h6{
    margin: 10px 0  ;
}
#totalProfitSum{
    font-weight: bold;
}
.booking-data td{
    text-transform: capitalize;
}
.view-details-link{
    font-size: 12px;
    display: block;
    color: var(--primary-color);
}
.view-details-link:hover{
    color: var(--secondary-color); 
}
.table-pagination{
    float: right;
}
ul.pagination li a {
    min-width: 30px;
    min-height: 30px;
    display: block;
    text-align: center;
    background: #eee;
    box-sizing: border-box;
    padding: 2px 8px;
    text-decoration: none;
    margin-left: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    color: #333;
}
ul.pagination li.active a, ul.pagination li a:hover { 
    background-color: #0dcaf0;
    color: #fff;
}
.customers-data-table-link{
    display: block;
}
.customers-data-table-link .view-details-link{
    display: inline-block;
}

/*======= DASHBOARD STYLING ===========*/
#sidebar-menu::-webkit-scrollbar {
    width: 5px;
  }
   
#sidebar-menu::-webkit-scrollbar-track {
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

#sidebar-menu::-webkit-scrollbar-thumb {
background-color: var(--primary-color);
outline: 1px solid slategrey;
}
.filters-form-dashboard {
    padding: 15px;
    margin-bottom: 25px;
    box-shadow: 0 0 9px 4px #e3e3e3ee;
}
.filters-form-dashboard label{
    color: var(--secondary-color);
    font-size: 13px !important;
    font-weight: 500 !important;
}
.filters-form-dashboard input, .filters-form-dashboard select{
    border-left: 0;
    border-right: 0;
    border-top: 0;
}
.booking-data thead tr{
    background-color: var(--secondary-color);
}
.booking-data thead tr th{
    color: #fff;
    font-weight: 400; 
}
.booking-data td{
    font-size: 14px;
    vertical-align: middle;
}
.booking-data td .btn-primary{
    width: auto;
    padding: 2px 10px;
}
.pagination-row{
    color: var(--secondary-color);
    font-size: 14px;
}
#updateInvoices, #addBank {
    margin: 10px 0;
    width: auto;
    padding: 5px 25px;
}
#bookingHeader select.error,  input.error, select.error {
    border-color: #f1aeb5;
    background: #f8d7da;
}
p.errorMessage {
    position: absolute;
    bottom: -15px;
    left: 0px;
    margin: 0 0 0 0;
    font-size: 11px;
    color: red;
}
.bookingUpdateRow .printInvoiceButton {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 400;
    width: auto;
    padding: 8px 60px;
}
form#editBookingForm .bookingUpdateRow button.btn.btn-primary {
    width: auto;
    padding: 8px 60px;
}
.bookingUpdateRow .printInvoiceButton:hover {
    background: var(--primary-color);
}
.topbar button.btn.btn-primary {
    width: auto;
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 4px;
}
.topbar button.btn.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.topbar  a.btn.printInvoiceButton {
    width: auto;
    padding: 5px 20px;
    font-size: 12px;
    border-radius: 4px;
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    margin: 0 20px 0 10px;
}
.topbar a.btn.printInvoiceButton:hover {
    background: var(--primary-color);
    color: #fff;
}
button.RoundOffBtn.btn.btn-primary {
    width: auto;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translate(0px, -50%);
    font-size: 9px;
    font-weight: 500;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    z-index: 2;
}
button.btn.w-auto {
    padding: 8px 60px;
}