:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-color: #fff;
    --text-color: #333333;
    --text-color-light: #777777;
    --label-text-color: #555;
    --heading-color: #000000;
    --link-color: #007bff;
    --link-hover-color: #ff5959;
    --border-color: #dddddd;
    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 24px;
    --font-family: Arial, Helvetica, sans-serif;
    --josefin-sans: "Josefin Sans", sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --input-border-color: rgba(0, 123, 255, 0.3) !important;

    /* Sidebar Menu Variables */
    --menu-header-box-shadow: rgba(0, 0, 0, 0.01) 0px 6px 6px 1px,
        rgba(0, 0, 0, 0.05) 0px 4px 4px 1px;
    --menu-bg-color: #ffffff;
    --submenu-bg-color: #fafafa;
    --menu-border-color: #e0e0e0;
    --menu-arrow-color: #545454;

    --menu-link-text-color: #4c4c4c;
    --menu-link-hover-text-color: #ff5959;
    --menu-link-hover-bg-color: #f5f5f5;

    --menu-link-active-text-color: #ff4949;
    --menu-link-active-bg-color: #efefef;
}

html,
body {
    background: #fff;
    width: 100%;
}

html {
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}

body {
    color: #777;
    font-family: var(--font-family);
    line-height: 22px;
    margin: 0;
    font-size: 14px;
}

body::-webkit-scrollbar {
    width: 6px; /* Width of the scrollbar */
}

body::-webkit-scrollbar-thumb {
    background-color: var(--link-hover-color);
}

a {
    color: var(--link-color);
    text-decoration: none;
}

a:hover {
    color: var(--link-hover-color);
    text-decoration: none;
}

a:focus {
    outline: none;
}

textarea:focus,
input:focus {
    outline: none;
}

*:focus {
    outline: none;
}

/*---------------------------------
  Floating Label End
---------------------------------*/

.mbdFoatingLabel {
    position: relative;
    padding-top: 15px;
    margin-bottom: 10px;
}

.mbdFoatingLabel input {
    padding-left: 15px;
    min-height: 45px;
}

.mbdFoatingLabel input:focus {
    border: 1px solid rgba(0, 123, 255, 0.294);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(0, 123, 255, 0.294);
    outline: none;
}

.mbdFoatingLabel input:-webkit-autofill,
.mbdFoatingLabel input:-webkit-autofill:hover,
.mbdFoatingLabel input:-webkit-autofill:focus,
.mbdFoatingLabel input:-webkit-autofill:active {
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: 0 0 0 50px white inset;
}

.mbdFoatingLabel input:-webkit-autofill ~ label {
    top: -5px;
    left: 10px;
    font-size: 14px;
}

.mbdFoatingLabel label {
    cursor: text;
    margin: 0;
    padding: 0;
    left: 15px;
    top: 26px;
    position: absolute;
    font-size: 14px;
    color: #818181;
    font-weight: normal;
    transition: all 0.3s ease;
}

.mbdFoatingLabel label.active {
    top: -5px;
    left: 7px;
    font-size: 14px;
}

.mbdFoatingLabel label.active.focusIn {
    color: #696969;
}

/*---------------------------------
  Floating Label End
---------------------------------*/

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 50px white inset; /* Change the color to your own background color */
    -webkit-text-fill-color: #333;
}
