
body {
    background-color: #F1F1F1;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
}

/* For WebKit-based browsers (Chrome, Safari) and Edge */

/* Width and height of the scrollbar thumb (the draggable part) */
::-webkit-scrollbar {
    width: 7px;
  }
  
  /* Styling the scrollbar thumb */
  ::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
  }
  
  /* Styling the scrollbar track (the area behind the thumb) */
  ::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  
  /* For Internet Explorer and Edge (non-Webkit based) */
  
  /* Width and height of the scrollbar thumb */
  /* Note: The MS scrollbar properties are supported in IE and old Edge versions (EdgeHTML). */
  * {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
  }
  
  /* Styling the scrollbar thumb */
  /* Note: The scrollbar-color property accepts two colors for thumb and track respectively. */
  *::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 5px;
  }
  
  /* Styling the scrollbar track */
  *::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  

.navbar {
    background-color: #FFFFFF;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 30px;
}

.navbar-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.navbar-logo img {
    width: 140px;
}

.navbar-logo a {
    color: #FC8019;
    font-size: 18px;
}

.navbar-logo a:hover {
    color: #f76f00;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.navbar-menu a {
    color: #FC8019;
    font-size: 18px;
    text-decoration: none;
}

@media (min-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar-menu {
        flex-direction: row;
        margin-top: 0;
    }

    .navbar-menu a {
        margin-right: 20px;
    }
}

/* CSS for the card container */
.card-container {
    display: flex;
    flex-wrap: wrap;
    margin: 30px;
    width: 80%;
}

/* CSS for each card */
.card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-bottom: 20px; /* Added margin to create spacing between cards */
    margin-right: 20px;
    border-radius: 10px;
    width: 170px;
    height: 200px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
    text-align: center;
}
.card-2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 8px;
    border-radius: 10px;
    width: 160px;
    height: 190px;
    font-size: 16px;
    font-weight: bold;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    cursor: pointer;
}
/* CSS for the card container */
.card-container2 {
    display: flex;
    flex-wrap: wrap;
}

.card-2 img {
    width: 100px;
}

.card img {
    max-width: 70%;
    max-height: 70%;
}

.porosia {
    font-size: 16px;
    padding: 8px;
    color: #4468e0;
    background-color: #F1F1F1;
    border: 1px solid #4468e0;
    border-radius: 10px;
}

.porosia:hover {
    font-size: 17px;
    padding: 8px;
    color: #4468e0;
    background-color: #F1F1F1;
    border: 1px solid #4468e0;
    border-radius: 10px;
}

/* CSS for the sidebar */
.sidebar {
    background-color: #fff;
    padding: 16px;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 360px;
    border-left: 1px solid #BCBCBC;
    max-height: 930px;
    overflow-y: auto;
}

.sidebar-button-container {
    position: relative;
    margin-top: 20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
}

tfoot {
  position: sticky;
  bottom: 0;
  background-color: #303030; /* Optional: Set the background color for the footer */
  font-weight: bold; /* Optional: Adjust the style for the footer */
  color: white;
}

.sidebar-button {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    background-color: #09AA29;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    border: none;
}

.sidebar-button > i{
    margin-right: 5px;
    font-size: 20px;
}

.shto-button{
    font-size: 20px;
    padding: 13px;
    background-color: #FC8019;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
}

.shto-button > i{
    margin-right: 5px;
    font-size: 20px;
}

.sidebar-card {
    display: flex;
    margin: 10px;
    padding: 10px;
    align-items: center;
    color: black;
    background-color: #F1F1F1;
    height: 50px;
    border-radius: 10px;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.sidebar-card > input{
    display: flex;
    margin: 10px;
    padding: 2px 5px;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: #ffffff;
    height: 35px;
    width: 33px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    font-size: 18px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* CSS for the main content */
.content {
    margin-left: 220px; /* Adjust this value to leave space for the sidebar */
    padding: 20px;
}
.decrement-button {
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 2px 5px;
    border: none;
    margin-left: 20px;
}

/* CSS for the increment button */
.increment-button {
    color: #fff;
    background-color: #1a1a1a;
    border-radius: 5px;
    padding: 2px 5px;
    border: none;
}

.card-button {
    width: 100%;
    padding: 10px;
    background-color: #5ca700;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}
.card-button-hold {
    width: 100%;
    padding: 10px;
    background-color: #fc1919;
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    border: none;
    font-size: 16px;
}
.card-link{
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  align-items: center;
  color: white;
  font-size: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  background-color: #FC8019;
  font-weight: bold;
}
.pagination .page-item.active .page-link {
    background-color: #FFF2E8;
    border-color: #FFA75F;
}
.biliard{
    display: flex;
    flex-direction: row;
}
.biliard-card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
    width: 280px;
    height: 300px;
    padding: 18px;
    font-weight: bold;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.biliard img{
    width: 250px;
}
.container-1 {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container-2 {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 32px;
    width: 550px;
}

.container-pro-1{
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-products{
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 32px;
}
.h2-login {
    margin-top: 0;
    text-align: center;
    color: #3f4045;
    font-size: 24px;
}

.logo {
    text-align: center;
    margin-bottom: 24px;
}

.logo img {
    width: auto;
}

.form-login {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.label-login {
    margin-bottom: 8px;
    font-weight: bold;
    color: #3f4045;
}

.input-login {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 16px;
}

.btn-login {
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 14px;
    background-color: #FC8019;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: auto;
}

.btn-login:hover {
    background-color: rgb(255, 115, 0);
    text-decoration: none;
    color: #fff;
}

.btn-login-secondary{
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 14px;
    background-color: #fff;
    color: #FC8019;
    border: 1px solid #FC8019;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    width: auto;
    text-align: center;
}

.btn-login-secondary:hover {
    background-color: rgb(255, 115, 0);
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.nav-kategori{
    display:flex;
    flex-direction:row;
    justify-content:center;
}

.two-row-2{
    display: flex;
    flex-direction: row;
}

@media screen and (max-width: 768px) {
    .pagination {
        display:flex;
        flex-direction: column;
    }.nav-kategori{
        justify-content:start;
        padding: 16px;
    }
  }

.per-log{
    display:flex;
    flex-direction:row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.per-log p{
    margin: auto;
}