:root {
  --bs-pink-400: #f87171;
  --bs-blue-400: #60a5fa;
  --bs-yellow-100: #fffdf9;
}
* {
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Mali", cursive;
  background-color: var(--bs-yellow-100);
  color: #4a4a4a;
}
.cute-shadow {
  box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.05);
}
.cute-card-hover {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.cute-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.1);
}
.decoration-wavy {
  text-decoration: underline wavy;
  text-decoration-color: var(--bs-pink-400);
}

.cute-mt {
  margin-top: 1.5rem !important;
}

.nav_username {
  border-bottom: 3px solid #60a5fa;
  
}


.sidebar {
    position: fixed;
    width: 250px;
    height: 100vh;
    background-color: #fffdf9;
    top: 0;
    left: -250px;
    box-shadow: 0 0 5px #aeaaaa;
    transition: left 0.5s ease;
    z-index: 100;
}
.sidebar.active {
    position: fixed;
    width: 250px;
    height: 100vh;
    background-color: #fffdf9;
    top: 0;
    left: 0px;
    box-shadow: 0 0 5px #aeaaaa;
}

.admin_sidebar_btn {
    text-decoration: none;
    display: block;
    background-color: #f8717160;
    padding: 1rem;
    margin: 1rem;
    color: #4a4a4a;
    border-radius: 1rem;
}


.sidebar_btn {
    position: absolute;
    border: none;
    padding: 0.5rem;
    border-radius: .5rem;
    top: 50%;
    right: -30px;
    background-color: #ffa8a8;
}

.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #4a4a4a0f;
    z-index: 100;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.1s ease-in-out, visibility 0.3s ease-in-out
}
.popup.active {
    /* display: flex; */
    opacity: 1;
    visibility: visible;
    

}

.alert-icon{
    font-size: 3rem;
    padding: 1rem;
    color: #f87171;
}

.table-responsive {
    width: 100%;
    overflow: auto;
    margin: 1rem auto;
}

.btn-ds-admin {
    display: block;
    background-color: #fffdf9;
    box-shadow: -0.5rem 0 0 #6d60fa;
    border: 1px  solid #a9a9a9;
    border-radius: 1rem;
    transition: transform 0.5s ease ;
    text-decoration: none;
}

.btn-ds-admin.warning {
    background-color: #fffdf9;
    box-shadow: -0.5rem 0 0 #fac445;
    border-radius: 1rem;
}
.btn-ds-admin.danger {
    background-color: #fffdf9;
    box-shadow: -0.5rem 0 0 #fa6060;
    border-radius: 1rem;
}
.btn-ds-admin:hover {
    transform: scale(1.05);
}

.bi-graph-up-arrow {
    font-size: 2rem;
    color: #6d60fa;
}

.bi-bar-chart-line{
    font-size: 2rem;
    color: #fac445;
}
.bi-exclamation-octagon{
    font-size: 2rem;
    color: #fa6060;
}


.banner {
    width: 90%;
    object-fit: cover;
    margin: 1rem auto;

}

.mc_login{
    max-width: 400px;
    object-fit: contain;
    
}
.popup-menu {
  position: relative;
}

.popup-list {
  display: block;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background-color: #fffdf9;
  border: 0.5px solid #4a4a4a;
  top: 30px;
  right: -10px;
  transition: opacity 0.3s ease ;
  z-index: 200;
}

.popup-list.active {
  position: absolute;
  background-color: #fffdf9;
  
  top: 30px;
  right: -10px;
  opacity: 1;
  visibility: visible;
}


.profile {
  object-fit: cover;
}