/* layout.css */
html, body {
    height: 100%;
    margin: 0;
}

body {
    background-color: #1a1d21;
    color: white; 
}

/* ----------------------------
   SIDEBAR BASE
----------------------------- */
.sidebar {
    width: 260px;
    min-height: 100vh;
    border-right: 1px solid #262a2e;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Logo area */
.logo-box {
    width: 40px;
    height: 40px;
    background-color: #0e2a18 !important;
    border-radius: 8px;
}

/* ----------------------------
   NAV LINKS
----------------------------- */
.sidebar .nav-link {
    color: #adb5bd;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

/* Icons default grey */
.sidebar .nav-link {
    color: #7b848d;
}

/* Hover state */
.sidebar .nav-link:hover {
    background-color:  rgb(23 26 28);
    color: #ffffff;
}

.sidebar .nav-link:hover i {
    color: #ffffff;
}

/* ----------------------------
   ACTIVE LINK
----------------------------- */
.sidebar .nav-link.active {
    color: #82dda5;
    font-weight: 600;
}

/* Active icon color */
.sidebar .nav-link.active i {
    color: #82dda5;
    font-weight: 600;
}


.sidebar .selected_nav{
    color: #82dda5;
    font-weight: 600;
}
 
.selected_icon{
    color: #82dda5;
}

#flash-toast-wrapper {
  width: 100%;
  z-index: 2000;
  padding: 0 0px;          /* side margins */
  pointer-events: none;
}

.flash-toast {
  width: 100%;              /* full width */
  background: #82dda5;
  color: #0b3d1f;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  pointer-events: auto;
}
