@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

h1 {
    font-weight: 600;
    font-size: 1.5rem;
}

body {
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    display: flex;
}

.main {
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.35s ease-in-out;
    background-color: #fafbfe;
    margin-left: 60px;
}

.sidebar {
    width: 60px; /* Sidebar dalam keadaan minimum */
    height: 100vh;
    background: #343a40; /* Warna latar */
    position: fixed;
    top: 0;
    left: 0;
    transition: width 0.3s;
    /* overflow-x: hidden; */
    white-space: nowrap;
    padding-top: 20px;
}

.main-lgsidebar {
    margin-left: 250px;
}

#sidebar {
    width: 70px;
    min-width: 70px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background-color: #0e2238;
    display: flex;
    flex-direction: column;
}

#sidebar.expand {
    width: 260px;
    min-width: 260px;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem 1.5rem;
}

.toggle-btn i {
    font-size: 1.5rem;
    color: #FFF;
}

.sidebar-logo {
    margin: auto 0;
}

.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}

#sidebar:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span {
    display: none;
}

.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
}

a.sidebar-link {
    padding: .625rem 1.625rem;
    color: #FFF;
    display: block;
    font-size: 0.9rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}

.sidebar-link i {
    font-size: 1.1rem;
    margin-right: .75rem;
}

a.sidebar-link:hover {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid #3b7ddd;
}

.sidebar-item {
    position: relative;
}

#sidebar:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: #0e2238;
    padding: 0;
    min-width: 15rem;
    display: none;
}

#sidebar:not(.expand) .sidebar-item:hover .has-dropdown + .sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}

#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.sidebar-link.active {
    background-color: var(--bs-secondary); /* Uses Bootstrap primary color */
    color: white !important;
}

#result, #resultPokok, #resultSearch {
    border: 1px solid #ccc;
    display: none;
    position: absolute;
    background: white;
    width: auto;/* 200px */
    z-index: 1000;
}

.suggestion, .suggestionpo {
    padding: 5px;
    cursor: pointer;
}

.suggestion:hover {
    background: #f0f0f0;
}

.suggestion.active {
    background: lightblue;
}
.suggestionpo:hover {
    background: #f0f0f0;
}

.suggestionpo.active {
    background: lightblue;
}

.nav-item a {
    white-space: nowrap;
}

/* Untuk melekatkan column pertama - ni table galery */
.sticky-col {
  position: sticky;
  left: 0;
  z-index: 1;
}

/* Optional: untuk nampak jelas dan tidak tutup oleh border */
.table .sticky-col {
  background-color: #fff; /* atau guna class Bootstrap bg-white */
}

  .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover; /* atau tukar kepada 'contain' cover  mengikut keperluan */
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    /* overflow: hidden; */
  }

    /* .form-check-input.fsale-toggle, */
    .form-check-input.view-status {
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

  /* Bila aktif (dinyalakan) */
  .form-check-input.berjaya{
    border-color: #5cd10e;
    box-shadow: 0 0 20px 6px #5cd10e; /* Tambah blur dan spread */
    /* transition: border-color 0.5s ease, box-shadow 0.5s ease; */
  }
