@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Quicksand:wght@300..700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Changa:wght@200..800&family=Electrolize&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oxanium:wght@200..800&family=Rajdhani:wght@300;400;500;600;700&family=Space+Grotesk:wght@300..700&display=swap');

html, body {
    height: 100%;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-family: 'Rubik', sans-serif;
}

/* Light mode styles */
[data-bs-theme="light"] {
    --app-bg: #EBEDEF;
    --sidebar-bg: #ffffff;
    --card-dashboard-bg: #ffffff3f;
    --background-color: rgb(47, 73, 88);
    --bg-color-cashier: #2f4958;
    --text-color: #ffffff;
    --cashier-bg-color: #ffffff;
    --cashier-bg-gradient: #dbe6f5;
    --cashier-color: #252525;
    --table-thead: #060a10;
    --table-striped: #ebedef8a;
    --border-bottom-table: #ddd;
    --login-bg: #ffffff;
    --button-try: #4f52ff;
    --button-try-hover: #70d1a4;
    --sandbox-bg-color: #01B5DA;
    --sandbox-hover-bg-color: #02acce;
    --card-login-bg-color: #F2F3F3;
    --card-login-border-color: #E8E2E2;
    --home-bg-gradiend-1: #ffffff; /* Putih murni */
    --home-bg-gradiend-2: #eff3ff; /* Biru pastel lembut untuk kesegaran */
    --home-color: #3a3a3a;
    --button-bg-color: #4f52ff;
    --bg-qty-req: #ffffff;
    --gradient-home-1: #ffffff; /* Putih murni */
    --gradient-home-2: #f9fafb; /* Putih dengan sedikit abu-abu terang */
    --gradient-home-3: #eff3ff; /* Putih dengan sedikit sentuhan biru lembut */
    --gradient-home-4: #e0e7ff;
}

/* Dark mode styles */
[data-bs-theme="dark"] {
    --app-bg: #1c2125;
    --sidebar-bg: #212529;
    --card-dashboard-bg: #2c3035;
    --background-color: #EEEEEE;
    --bg-color-cashier: #23374D;
    --text-color: #1a1a1a;
    --cashier-bg-color: #212529;
    --cashier-bg-gradient: #2c3035;
    --cashier-color: #EEEEEE;
    --table-thead: #ff9800;
    --table-striped: #2C3034;
    --border-bottom-table: #31363F;
    --login-bg: rgb(47, 73, 88);
    --button-try: #4f52ff;
    --button-try-hover: #66aa8e;
    --sandbox-bg-color: #4F98CA;
    --sandbox-hover-bg-color: #4f99cae5;
    --card-login-bg-color: #272a2e;
    --card-login-border-color: #2e3135;
    --home-bg-gradiend-1: rgb(59, 64, 70);
    --home-bg-gradiend-2: #272a2e;
    --home-color: #ffffff;
    --button-bg-color: #ff9800;
    --bg-qty-req: #212529;
    --gradient-home-1: #000000;
    --gradient-home-2: #212529;
    --gradient-home-3: rgb(59, 64, 70);
    --gradient-home-4: #000000;
}

[data-bs-theme="light"] .logo img {
    content: url('../Logo\ Softcomp\ -\ RGB-01.png');
}

[data-bs-theme="dark"] .logo img {
    content: url('../Logo\ Softcomp\ -\ RGB\ White-01.png');
}

[data-bs-theme="light"] .logo-home img {
    content: url('../Logo\ Softcomp\ -\ RGB-01.png');
}

[data-bs-theme="dark"] .logo-home img {
    content: url('../Logo\ Softcomp\ -\ RGB\ White-01.png');
}

body {
    background-color: var(--app-bg) !important;
    font-family: 'Poppins', sans-serif !important;
    color: var(--cashier-color);
}

.card{
    background-color: transparent !important;
}

/* .form-control{
    background-color: var(--cashier-bg-color) !important;
} */

.custom-font{
    font-family: "Space Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 4rem;
}

.app-bg{
    background-color: var(--app-bg);
}
.del{
    color: var(--cashier-color);
}
.app-cashier{
    background-color: var(--bg-color-cashier);
}

.top-content-input{
    display: flex;
    justify-content: space-between;
}

.custom-button1{
    background: var(--button-bg-color);
    color: var(--bg-qty-req);
    text-decoration: none;
    border: none;
    padding-inline: 1rem;
    padding-block: .3rem;
    border-radius: 7px;
    -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

.custom-button1:hover {
    box-shadow: 0 0 40px 40px #1212252f inset;
}

#custom-button2{
    background: #C40B13;
    color: #ffffff;
    border: none;
    padding-inline: 1rem;
    padding-block: .3rem;
    border-radius: 7px;
    -webkit-transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
    transition: box-shadow 300ms ease-in-out, color 300ms ease-in-out;
}

#custom-button2:hover {
    box-shadow: 0 0 40px 40px #1212252f inset;
}

.third {
    border-color: #3498db;
    color: #fff;
    box-shadow: 0 0 40px 40px #3498db inset, 0 0 0 0 #3498db;
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
  }
  .third:hover {
    box-shadow: 0 0 10px 0 #3498db inset, 0 0 10px 4px #3498db;
  }

#custom-button1{
    background: var(--button-bg-color);
    color: #ffffff;
    border: none;
    padding-inline: 1rem;
    padding-block: .3rem;
    border-radius: 7px;
}

#custom-button1:hover {
    box-shadow: 0 0 10px 0 var(--button-bg-color) inset, 0 0 10px 1px var(--button-bg-color);
}

/* CSS */
.button-33 {
  background-color: #c2fbd7;
  border-radius: 100px;
  box-shadow: rgba(44, 187, 99, .2) 0 -25px 18px -14px inset,rgba(44, 187, 99, .15) 0 1px 2px,rgba(44, 187, 99, .15) 0 2px 4px,rgba(44, 187, 99, .15) 0 4px 8px,rgba(44, 187, 99, .15) 0 8px 16px,rgba(44, 187, 99, .15) 0 16px 32px;
  color: rgb(190, 180, 235);
  cursor: pointer;
  display: inline-block;
  font-family: CerebriSans-Regular,-apple-system,system-ui,Roboto,sans-serif;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  transition: all 250ms;
  border: 0;
  font-size: 16px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-33:hover {
  box-shadow: rgba(44,187,99,.35) 0 -25px 18px -14px inset,rgba(44,187,99,.25) 0 1px 2px,rgba(44,187,99,.25) 0 2px 4px,rgba(44,187,99,.25) 0 4px 8px,rgba(44,187,99,.25) 0 8px 16px,rgba(44,187,99,.25) 0 16px 32px;
  transform: scale(1.05) rotate(-1deg);
}

.bg-home{
    min-height: 100vh;
    /* opacity: 0.8; */
    background-image: repeating-radial-gradient( circle at 0 0, transparent 0, var(--gradient-home-1) 1100px ), repeating-linear-gradient( var(--gradient-home-2), var(--gradient-home-3) );
}

.bg-home1{
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.bg-card-dashboard {
    background-color: var(--card-dashboard-bg);
    border-radius: 10px;
}

.bg-card-dashboard:hover {
    background-color: var(--sidebar-bg-hover); /* Ubah ke warna hover */
}

.span-pos{
    color: var(--cashier-color);
}

.home-icon{
    height: 25px;
    width: auto;
}

.home-icon-kasir{
    height: 32px;
    width: auto;
}

.custom-bg {
    padding: 15px;
    background: linear-gradient(to top right, var(--home-bg-gradiend-1), var(--home-bg-gradiend-1));
}

.custom-bg-2{
    border-radius: 1rem;
    border: 1px solid #5F5F5F;
}

.custom-bg-kasir {
    padding: 30px;
    background: linear-gradient(to top right, var(--home-bg-gradiend-1), var(--home-bg-gradiend-1));
}

.custom-bg-item {
    background: linear-gradient(70deg, var(--cashier-bg-color), var(--cashier-bg-gradient));
}

.home-text {
    color: var(--home-color);
    font-size: .80rem;
    font-weight: 500;
    margin-top: 5px;
}

.home-text1{
    font-size: 15px;
    color: var(--home-color);
}

.bg-card-welcome{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}

.bg-card-welcome-2{
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: capitalize;
}

#icon-color-home{
    color: var(--home-color);
}

.login-card{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.089);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8.9px);
    -webkit-backdrop-filter: blur(6.9px);
    border: 1px solid rgba(255, 255, 255, 0.11);    
    padding: 3rem; 
    margin-bottom: 3rem;        
}

.login-text{
   color: var(--cashier-color);
}

.modal{
    backdrop-filter: blur(5px);
}

@keyframes smoothBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-1px);
    }
}

.button-try {
    background-color: #283242;
    padding: .5rem 1rem;
    border: none;
    border-radius: 1rem;
    font-size: large;
    display: flex;
    flex-direction: column;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-image: linear-gradient(7deg, var(--button-try) 50%, transparent 50%);
    background-size: 500%;
    background-repeat: no-repeat;
    background-position: 0%;
    transition: background-position 300ms ease-in-out, color 300ms ease-in-out, transform 300ms ease-in-out;
}

.button-try:hover {
    background-position: 100%;
    color: #000000;
    animation: smoothBounce 0.9s ease;
}

.img-1{
    width: 45px; 
    height: auto;
}

.img-2{
    width: 24px; 
    height: auto;
}

.button-try svg {
    fill: #fff; /* Warna ikon pada tombol */
}

.button-try h6 {
    margin: 0; /* Hapus margin bawaan */
    padding: 3px; /* Padding judul */
    border: 2px solid #F6E9B2; /* Border judul */
    border-radius: 5px; /* Bentuk sudut judul */
    color: #F6E9B2; /* Warna teks judul */
    font-weight: bold; /* Tebal teks judul */
    transition: color 0.3s, border-color 0.3s; /* Efek transisi halus */
}

.button-try:hover h6 {
    color: #60c395; /* Warna teks judul saat dihover */
    border-color: #60c395; /* Warna border judul saat dihover */
}

.head-cashier{
    display: flex;
    justify-content: space-between;
    padding-right: 2rem;
    padding-left: 2rem;
    padding-block: 2rem;
}

.head-cashier-2{
    font-size: x-large;
    color: var(--cashier-color);
}

.logo img{
    height: 50px;
    width: 130px;
}

.logo-home img{
    height: auto;
    width: 170px;
}

#cashier{
    overflow-y: auto;
    height: calc(85vh - 2rem);
    background-color: var(--cashier-bg-color);
    color: var(--cashier-color);
    border-radius: .8rem;
    padding-inline: 2rem;
    padding-block: 2rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

#chart {
    max-width: 650px;
    margin: 35px auto;
  }
  

#cashier1{
    overflow-y: auto;
    height: calc(85vh - 2rem);
    background-color: var(--cashier-bg-color);
    color: var(--cashier-color);
    border-radius: .8rem;
    padding-inline: 2rem;
    padding-block: 1rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.075);
}

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background-color: var(--sidebar-bg);
    color: var(--cashier-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 5;
    border-top-right-radius: 1rem;
    overflow-y: auto;
}

.sidebar-icon{
    margin-left: 1rem;
    padding: 8px 8px;
    transition: background-color 0.1s ease, border-radius 0.1s ease, padding 0.3s ease;
}

.sidebar-icon a {
    font-size: small;
    /* padding-top: 6px; */
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.1s ease, box-shadow 0.1s ease; /* Transisi halus untuk transform dan bayangan */
}

.sidebar-icon h2 {
    font-size: small;
    /* padding-top: 6px; */
    font-weight: 400;
}

.sidebar-icon:hover {
    background-color: #4f52ff15;
    border-radius: .5rem;
    padding: 8px 8px;
    color: var(--cashier-color);
}

.sidebar-icon a:hover svg {
    color: var(--cashier-color);
}

.sidebar-icon svg{
    width: 21px;
    height: auto;
    color: var(--cashier-color);
}

.sidebar-open {
    transform: translateX(0);
}
.sidebar .nav-link.active {
    background-color: #4f52ff;
    border-radius: .5rem;
    padding: 5px 8px;
    color: #fff;
}

.sidebar .nav-link.active svg {
    color: #fff
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 3;
}
.overlay.show {
    display: block;
}
#sidebarToggleBtn {
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-color: #e867ea; 
    border: none; 
    padding-block: 7px;
    border-top-right-radius: 1rem; 
    border-bottom-right-radius: 1rem
}

#sidebarToggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

#arrowImage {
    transition: transform 0.3s ease-in-out;
}

#sidebarToggleBtn:hover #arrowImage {
    animation: slideRight 0.5s forwards;
}

#sidebarToggleBtn-2 {
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-color: #e867ea; 
    border: none; 
    padding-block: 7px;
    border-top-right-radius: 1rem; 
    border-bottom-right-radius: 1rem
}

#sidebarToggleBtn-2:hover #arrowImage {
    animation: slideLeft 0.5s forwards;
}


@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}
.clock1 {
    display: flex;
    justify-content: flex-start;
    gap: 7rem;
    align-items: center;
}

.clock2 {
    background-color: var(--cashier-bg-color); 
    padding: .5rem 2rem; 
    border-radius: 2.5rem
}

.plus-button{
    margin-left: -20.5rem;
    margin-top: 10px;
}

#realTimeClock{
    font-size: medium;
}

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

.body-cashier-2{
    display: flex;
    gap: 7.5rem;    
    margin-top: 1rem;
}

.body-charsier-3{
    padding-top: 3rem;
}

.my-table {
    width: 100%;
    border-collapse: collapse;
    /* margin-bottom: 5rem; */
    font-weight: normal;
    font-size: 14px;
    border-radius: .5rem
}

.my-table thead {
    background-color: var(--table-thead);
    color: var(--text-color);
    top: 0;
    z-index: 1;
    font-size: 14px;
    position: sticky;
}

.my-table th, .my-table td {
    padding: 8px;
    text-align: left;
    border-bottom: none;
    font-size: 14px;
}

.my-table td, .my-table th {
    padding: 5.8px;
    text-align: left;
}

.my-table tr:nth-child(even) {
    background-color: var(--table-striped); 
}

.input-group-text {
    background-color: white;
    border-left: none;
}

.form-control {
    border-right: none;
}

.form-control:focus {
    box-shadow: none;
}

#searchMemberInput {
    font-size: 16px; 
    border-radius: 1rem;
    background-color: transparent;
}

#searchMemberInput::placeholder {
    color: #999999; 
    opacity: 1; 
    font-size: small;
}

#searchInput{
    font-size: 16px;
    border-radius: 1rem;
    background-color: transparent;
}

#searchInput::placeholder {
    color: #999999; 
    opacity: 1; 
    font-size: small;
}

.compare-so{
    font-size: x-large; 
    font-weight: bold
}

.sandbox {
    background: var(--sandbox-bg-color);
    color: white;
    border-radius: 1rem;
    padding-block: 0.5rem;
    padding-inline: 1rem;
    font-size: medium;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.sandbox:hover {
    background-color: var(--sandbox-hover-bg-color);
    transform: scale(1.05);
}


#sales_employee{
    font-size: 16px;
    border-radius: 1rem;
    height: 50px;
    background-color: transparent;
}

#sales_employee::placeholder {
    color: #999999; 
    opacity: 1; 
    font-size: large;
}

#logs{
    font-size: x-large;
    font-weight: bolder;
}

/* item */
#soType, #compareDate, #importFile{
    border-radius: 2rem;
}

.credit-card{
    height: 50px;
    width: 130px;
}

.sub-total{
    font-size: 3.3rem;
    font-weight: 500;
}

.qty-grup{
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.qty-sub{
    display: flex; 
    font-size: larger; 
}

.qty-sub-2{
    font-size: larger; 
}

.head-cashier1{
    font-size: medium;
    color: var(--cashier-color);
    text-decoration: none;
}

.head-table{
    overflow-y: auto; 
    height: 240px; 
    border-radius: .5rem
}

.head-table-no-suggestion{
    overflow-y: auto; 
    height: 450px; 
    border-radius: .5rem
}

.suggestion{
    font-weight: 500;
}

.suggestion-card{
    padding: 16px;
}

.cancel-plus-button{
    margin-top: 10px; 
    margin-left: -10.5rem;
}

#my-table-logs{
    height: 680px;
    overflow-y: auto;
    border-radius: .5rem;
}

.font-salesEmp{
    font-size: medium;
}

.opname{
    width: 1485px;
}

.opname-input{
    width: 1250px;
}

.shortcut{
    color: #e867ea; 
    border: 1px solid #e867ea; 
    border-radius: 5px; 
    margin-top: .3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: .5rem;
    width: 25px;
    height: 25px;
    font-size: small;
}

.table-member-tablet{
    overflow-y: auto; 
}

.breadcrumb-cashier{
    margin-top: .5rem;
    font-size: small;
}

.sync-data-member{
    margin-top: .3rem;
}

.button-top-right{
    display: flex; 
    justify-content: end; 
    gap: 5px;
    margin-bottom: 1.5rem;
}
/* 
.table-it-in{
    height: 570px;
}

.table-it-in-detail{
    height: 490px;
}

.table-item{
    height: 450px;
} */

.icon-panahBawah{
    margin-top: -1.9rem; 
    margin-left: 12rem; 
}

.title-page{
    font-size: x-large;
    padding-top: 1.2rem;
    padding-bottom: 1rem;
}

.user-name{
    font-size: 12px;
}

.wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  
  .add-to-cart {
    min-width: 70px;
    min-height: 25px;
    display: inline-flex;
    font-size: small;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: #313133;
    background: #4FD1C5;
    border: none;
    border-radius: 1000px;
    box-shadow: 3px 3px 6px rgba(79,209,197,.64);
    transition: all 0.3s ease-in-out 0s;
    cursor: pointer;
    outline: none;
    position: relative;
    padding: 10px;
    }
  
  .add-to-cart::before {
    content: '';
    box-shadow: 0 0 60px rgba(0,255,203,.64);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .3s ease-in-out 0s;
  }
  
  .add-to-cart:hover, 
  .add-to-cart:focus {
    color: #313133;
    transform: translateY(-6px);
    background-color: rgba(129,230,217,1);
  }
  
  .add-to-cart:hover::before, 
  .add-to-cart:focus::before {
    opacity: 1;
  }
  
  .add-to-cart::after {
    content: '';
    width: 30px; height: 30px;
    border-radius: 100%;
    border: 1px solid #00FFCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ring 1.5s infinite;
  }
  
  .add-to-cart:hover::after, 
  .add-to-cart:focus::after {
    animation: none;
    display: none;
  }
  
  @keyframes ring {
    0% {
      width: 30px;
      height: 30px;
      opacity: 1;
    }
    100% {
      width: 100px;
      height: 100px;
      opacity: 0;
    }
  }

.dropdown-up {
    position: absolute;
    bottom: 100%; /* Atur posisi dropdown agar muncul di atas elemen pemicu */
    left: 0; /* Sesuaikan dengan kebutuhan, bisa menggunakan right: 0 untuk mengatur posisi ke kanan */
    z-index: 1000; /* Pastikan dropdown terlihat di atas elemen lainnya */
}

.payment-button {
    display: flex; 
    justify-content: flex-end;
}

.container-head-cashier {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Make the container responsive */
}
.left-section {
    display: flex;
    gap: 4rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping for small screens */
}
.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.logo {
    flex-shrink: 0;
}

#bg-qty-req{
    background: var(--bg-qty-req);
    width: 50px;
    text-align: center;
}

.nav-tab-style{
    font-size: large;
    font-weight: 500;
    margin-top: 2rem;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.get-started{
    font-size: xx-large;
    font-weight: 700;
    text-align: center;
  }

.quantity-input {
    width: 50px;
    height: 30px; 
    font-size: 12px; 
    padding: 2px; 
    background-color: transparent; 
    text-align: center;
    margin-left: 8px;
    border: 1px solid #cccccc8f;
    border-radius: .5rem;
}

.quantity-input:disabled {
    border: 0;
}

.simple-inv{
    font-family: "Edu AU VIC WA NT Hand", cursive;
    color: var(--cashier-color);
    margin-top: -15px;
    display: flex;
    justify-content: center;
    padding-left: 1px;
    font-size: 14px;
}

#pay-container{
    padding: 1rem 2rem; 
    margin-bottom: 1rem; 
    border-radius: 1rem;
    display: flex;
    gap: 5rem;
}

.mb-search{
    margin-bottom: 2rem;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 kolom dengan lebar yang sama */
    grid-template-rows: auto; /* Tinggi baris otomatis */
    gap: 2rem; /* Jarak antar kolom dan baris */
}

.grid-item {
    padding: 20px;
    text-align: center;
}

/* .grid-item2 {
    padding: 20px;
    border-radius: 1rem;
    background-color: var(--app-bg);
    text-align: center;
    background: rgba(255, 255, 255, 0.103);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
} */

.grid-item2{
    padding: 20px;
    border-radius: 1rem;
    background: linear-gradient(to right, var(--gradient-home-2), var(--gradient-home-4)); /* Contoh gradient dari putih ke biru muda */
    text-align: center;
    /* border: 1px solid #eff3ff; */
}

.grid-item-kasir{
    padding: 20px 90px;
    padding-top: 35px;
    border-radius: 1rem;
    background-color: var(--app-bg);
    text-align: center;
    /* From https://css.glass */
    background: linear-gradient(to right, var(--gradient-home-2), var(--gradient-home-4));
    border-radius: 16px;
}

.button-member {
    margin-right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cashier-color);
    padding: 5px 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: small;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.button-member:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--cashier-color);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.icon-container{
}

.margin-pos{
    margin-top: 7.5rem;
    margin-bottom: 1rem
}

.margin-pos-kasir{
    margin-top: 12.5rem;
}

.margin-pos-admin{
    margin-top: 3.5rem;
    margin-bottom: 2.5rem;
}

.bg-login-register{
    min-height: 80vh;
}

.margin-logo-login-register{
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.waves {
    position:relative;
    width: 100%;
    height:15vh;
    margin-bottom:-7px; /*Fix for safari gap*/
    min-height:100px;
    max-height:150px;
    z-index: -5;
  }
  
  .content {
    position:relative;
    height:14vh;
    text-align:center;
    background-color: white;  
    z-index: -5;
  }
  
  /* Animation */
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
     transform: translate3d(-90px,0,0);
    }
    100% { 
      transform: translate3d(85px,0,0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height:40px;
      min-height:40px;
    }
    .content {
      height:30vh;
    }
    h1 {
      font-size:24px;
    }
  }


/* bantuan */
#card-tutorial{
    background-color: transparent; 
    border-radius: .5rem;
}

#card-tutorial span{
    color: var(--home-color);
}

#lihat-popup{
    background-color: transparent;
}
#lihat-popup:hover{
    background-color: #00000007;
}

#lihat-popup a{
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    text-decoration: none; 
    color: var(--home-color);
}

#card-tutorial .youtube{
    background-color: #14b8a6 !important; 
    border: none
}

#card-tutorial .youtube:hover{
    background-color: #14b8a5c5 !important; 
    border: none
}

#card-tutorial .youtube a{
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 8px; 
    text-decoration: none; 
    color: white
}

/* responsive */

/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {

}

/* Small devices (portrait tablets and large phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    
}

/* Medium devices (landscape tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1899px) {
    .head-cashier{
        padding-block: 1rem;
    }
    #cashier{
        height: calc(85vh - 1rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1rem;
    }
    .logo img{
        height: 50px;
        width: 130px;
    }
}

@media (-webkit-min-device-pixel-ratio: 1.25) {
    .margin-pos-kasir{
        margin-top: 8.5rem;
    }
    .home-icon{
        height: 22px;
        width: auto;
    }
    .custom-bg {
        padding: 15px;
    }
    .home-text {
        font-size: .7rem;
        font-weight: 500;
    }
    .grid-item2 {
        padding: 17px;
    }
    .head-cashier{
        padding-block: .7rem;
    }
    .margin-pos{
        margin-top: 1.5rem;
        margin-bottom: 4rem;
    }
    .custom-font{
        font-size: 3.5rem;
    }
    .breadcrumb-cashier{
        margin-top: 0;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .3rem;
    }
    .mb-search{
        margin-bottom: 1rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
    }
    .quantity-input {
        height: 24.5px; 
        font-size: 11.5px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 380px; 
    }
    .sub-total{
        font-size: 2.65rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 12.5px; 
    }
    #searchInput{
        font-size: 12.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1602px) and (max-width: 1899px) {
    .head-cashier{
        padding-block: .7rem;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1rem;
    }
    .mb-search{
        margin-bottom: 1.5rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 13.5px;
    }
    .quantity-input {
        height: 29px; 
        font-size: 11.5px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 435px; 
    }
    .sub-total{
        font-size: 2.65rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 2rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 12.5px; 
    }
    #searchInput{
        font-size: 12.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1540px) and (max-width: 1601px) {
    .margin-pos-kasir{
        margin-top: 8.5rem;
    }
    .head-cashier{
        padding-block: .7rem;
    }
    .margin-pos{
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
    .custom-font{
        font-size: 3.5rem;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: 1rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
    }
    .quantity-input {
        height: 27px; 
        font-size: 11.5px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 405px; 
    }
    .sub-total{
        font-size: 2.65rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1.5rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 12.5px; 
    }
    #searchInput{
        font-size: 12.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
}

/* @media (min-width: 1441px) and (max-width: 1539px) {
    .head-cashier{
        padding-block: .7rem;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: 1rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
    }
    .quantity-input {
        height: 25px; 
        font-size: 11.5px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 380px; 
    }
    .sub-total{
        font-size: 2.65rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1.5rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 12.5px; 
    }
    #searchInput{
        font-size: 12.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
} */

@media (min-width: 1367px) and (max-width: 1440px) {
    .margin-pos-kasir{
        margin-top: 8.5rem;
    }
    .head-cashier{
        padding-block: .7rem;
    }
    .margin-pos{
        margin-top: 3rem;
        margin-bottom: 4rem;
    }
    .custom-font{
        font-size: 3.5rem;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: 1rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
    }
    .quantity-input {
        height: 26px; 
        font-size: 11.5px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 400px; 
    }
    .sub-total{
        font-size: 2.65rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1.5rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 12.5px; 
    }
    #searchInput{
        font-size: 12.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
}

@media (min-width: 1281px ) and (max-width: 1366px ) {
    .margin-pos-kasir{
        margin-top: 5.5rem;
    }
    .margin-logo-login-register{
        margin-top: .5rem;
        margin-bottom: 1px;
    }
    .home-icon{
        height: 20px;
        width: auto;
    }
    .custom-bg {
        padding: 13px;
    }
    .home-text {
        font-size: .7rem;
        font-weight: 500;
    }
    .head-cashier{
        padding-block: .7rem;
    }
    .margin-pos{
        margin-top: 1px;
        margin-bottom: 3rem;
    }
    .custom-font{
        font-size: 3.5rem;
    }
    #cashier{
        height: calc(85vh - .9rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .2rem;
    }
    .mb-search{
        margin-bottom: 1rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .my-table th, .my-table td {
        padding: 4px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 320px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.4rem;
    }
    #searchMemberInput {
        font-size: 11.5px; 
    }
    #searchInput{
        font-size: 11.5px;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
}

/* 1280 x 1024 */
@media (min-width: 1156px ) and (max-width: 1280px ) {
    .head-cashier{
        padding-block: 1rem;
    }
    .logo img{
        height: auto;
        width: 130px;
    }
    .head-cashier1{
        font-size: medium;
    }
    #realTimeClock{
        font-size: medium;
    }
    #cashier{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1rem;
    }
    .mb-search{
        margin-bottom: 1.4rem;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .my-table th, .my-table td {
        padding: 7px;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
    }
    .quantity-input {
        height: 25px; 
        font-size: 12px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 430px; 
    }
    .sub-total{
        font-size: 2.5rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 3rem;
    }
    .head-cashier-2{
        font-size: 1.5rem;
    }
    #searchMemberInput {
        font-size: 12.5px;
        height: 2.4rem; 
    }
    #searchInput{
        font-size: 12.5px;
        height: 2.4rem;
    }
    #searchMemberInput::placeholder {
        font-size: 12.5px;
    }
    #searchInput::placeholder {
        font-size: 12.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 43px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem; 
    }
}

/* 1280 x 800 */
/* @media (min-width: 1156px ) and (max-width: 1280px ) {
    .head-cashier{
        padding-block: .6rem;
    }
    .logo img{
        height: auto;
        width: 110px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .head-cashier1{
        font-size: small;
    }
    #realTimeClock{
        font-size: small;
    }
    #cashier{
        height: calc(85vh - 1.3rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: .5rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: 12px;
        padding-top: 1px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 345px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.2rem;
    }
    #searchMemberInput {
        font-size: 11.5px;
        height: 2rem; 
    }
    #searchInput{
        font-size: 11.5px;
        height: 2rem;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 37px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem; 
    }
    #pay-container{
        margin-bottom: 1rem; 
    }
}  */

/* 1280 x 720 */
/* @media (min-width: 1156px ) and (max-width: 1280px ) {
    .head-cashier{
        padding-block: .6rem;
    }
    .logo img{
        height: auto;
        width: 110px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .head-cashier1{
        font-size: small;
    }
    #realTimeClock{
        font-size: small;
    }
    #cashier{
        height: calc(85vh - 1.3rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: .5rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 280px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.2rem;
    }
    #searchMemberInput {
        font-size: 11.5px;
        height: 2rem; 
    }
    #searchInput{
        font-size: 11.5px;
        height: 2rem;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 37px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem; 
    }
    #pay-container{
        margin-bottom: 1rem; 
    }
}  */

@media (max-width: 1155px ) {
    .head-cashier{
        padding-block: .6rem;
    }
    .logo img{
        height: auto;
        width: 110px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .head-cashier1{
        font-size: small;
    }
    #realTimeClock{
        font-size: small;
    }
    #cashier{
        height: calc(85vh - 1.3rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: .5rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: 12px;
        padding-top: 1px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 345px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.2rem;
    }
    #searchMemberInput {
        font-size: 11.5px;
        height: 2rem; 
    }
    #searchInput{
        font-size: 11.5px;
        height: 2rem;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 37px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem; 
        margin-bottom: 1rem; 
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
} 

/* 1280 x 800  641*/ 
@media (min-height: 642px) and (max-height: 700px)  {
    .margin-pos-kasir{
        margin-top: 6.5rem;
    }
    .home-icon{
        height: 20px;
        width: auto;
    }
    .custom-bg {
        padding: 10px;
    }
    .home-text {
        font-size: .7rem;
        font-weight: 500;
    }
    .margin-pos{
        margin-top: 1rem;
        margin-bottom: 3rem
    }
    .head-cashier{
        padding-block: .6rem;
    }
    .logo img{
        height: auto;
        width: 110px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .head-cashier1{
        font-size: small;
    }
    #realTimeClock{
        font-size: small;
    }
    #cashier{
        height: calc(85vh - 1.3rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    #cashier1{
        height: calc(85vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: .5rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 340px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.2rem;
    }
    #searchMemberInput {
        font-size: 11.5px;
        height: 2rem; 
    }
    #searchInput{
        font-size: 11.5px;
        height: 2rem;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 37px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem; 
        margin-bottom: 1rem; 
    }
}

/* 1280 x 720 -> tablet huawei */
@media (max-height: 640px) {
    .margin-logo-login-register{
        margin-top: .5rem;
        margin-bottom: .5rem;
    }
    .login-card{ 
        padding: 2rem; 
        margin-bottom: 2rem;        
    }
    .bg-login-register{
        min-height: 75vh;
    }
    .bg-home{
        min-height: 85.5vh;
    }
    .home-icon{
        height: 20px;
        width: auto;
    }
    .custom-bg {
        padding: 10px;
    }
    .home-text {
        font-size: .7rem;
        font-weight: 500;
    }
    .margin-pos{
        margin-top: 1px;
        margin-bottom: 2rem
    }
    .head-cashier{
        padding-block: .6rem;
    }
    .logo img{
        height: auto;
        width: 110px;
    }
    .logo-home img{
        height: auto;
        width: 145px;
    }
    .title-page{
        padding-bottom: .5rem;
    }
    .head-cashier1{
        font-size: small;
    }
    #realTimeClock{
        font-size: small;
    }
    #cashier{
        height: calc(72vh - 1.3rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: 1.5rem;
    }
    /* perubahan 6 Mei 2025 */
    /* #cashier1{
        height: calc(72vh - .5rem);
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    } */
    #cashier1{
        border-radius: .8rem;
        padding-inline: 2rem;
        padding-block: .5rem;
    }
    .mb-search{
        margin-bottom: .5rem;
    }
    .sidebar {
        width: 260px;
    }
    .sidebar-icon h2 {
        font-size: small;
        padding-top: 2px;
        font-weight: 400;
    }
    .sidebar-icon{
        margin-left: 1px;
    }
    .my-table th, .my-table td {
        padding: 5px;
        text-align: left;
        border-bottom: none;
        font-size: 12px;
    }
    .quantity-input {
        height: 21px; 
        font-size: 11px; 
        padding: 1.8px;
    }
    .head-table-no-suggestion{
        height: 260px; 
    }
    .sub-total{
        font-size: 2.3rem;
        font-weight: 500;
    }
    .font-salesEmp{
        font-size: 14px;
    }
    .body-charsier-3{
        padding-top: 1rem;
    }
    .head-cashier-2{
        font-size: 1.2rem;
    }
    #searchMemberInput {
        font-size: 11.5px;
        height: 2rem; 
    }
    #searchInput{
        font-size: 11.5px;
        height: 2rem;
    }
    #searchMemberInput::placeholder {
        font-size: 11.5px;
    }
    #searchInput::placeholder {
        font-size: 11.5px;
    }
    #sales_employee{
        font-size: 14px;
        height: 37px;
    }
    #sales_employee::placeholder {
        font-size: 14px;
    }
    #pay-container{
        padding: .8rem 1.5rem;
        margin-bottom: 1rem; 
    }
}

.nav-link.active {
    background-color: purple;
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    color: var(--home-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(128, 0, 128, 0.1);
    border-radius: 0.5rem;
}

.nav-link svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.accordion-body {
    padding: 0.5rem 1rem;
}

.sidebar-icon {
    margin-bottom: 0.5rem;
}