


button {
    background-color: orange;
    color: #fff;
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: #fd9644;
    margin-left: 72px;
}

.navbar-brand, .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: #fcb045 !important;
}

.container {
    flex: 1; /* This makes the container take up the remaining space */
    margin-top: 2rem;
    margin-left: 70px;
}

.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.footer a {
    color: #fd9644;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}





.list-group-item.active {
    background-color: rgba(0, 123, 255, 0.13) !important; /* Adjust transparency here */
    color: #0056b3; /* Optional: Set the text color */
    border-color: rgba(0, 123, 255, 0.1); /* Optional: Set the border color */
}




/* Sidebar Navigation */
.sidebar {
    width: 70px;
    background-color: #ffffff;
    border-right: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
}

@media (max-width: 576px) {
    .sidebar {
        width: 0px;

        display: none;
    }


    .navbar {
        /* background-color: #fd9644; */
        margin-left: 0px;
    }


    .container {
        flex: 1; /* This makes the container take up the remaining space */
        margin-top: 2rem;
        margin-left: 0px;
        margin-bottom: 40px;
    }



}

.sidebar-logo {
    padding: 0.62rem;
    text-align: center;
    background-color: #fd9644;
}

.sidebar-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.sidebar-nav li {
    border-bottom: 1px solid #e6e6e6;
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s;
}

.sidebar-nav li a i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.sidebar-nav li a:hover {
    background-color: #f5f5f5;
}

.sidebar-logout {
    padding: 0.5rem 0.5rem;
    border-top: 1px solid #e6e6e6;
}

.sidebar-logout form {
    margin: 0;
}

.sidebar-logout button {
    width: 100%;
    padding: 0.75rem;
    background-color: #fd9644;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sidebar-logout button:hover {
    background-color: #e86c10;
}

.sidebar-logout button i {
    margin-right: 0.5rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 100px;
    }
}

@media (max-width: 576px) {
.sidebar {
    position: fixed;
    left: -250px;
    transition: left 0.3s;
}

.sidebar.active {
    left: 0;
}
}

/* Basic styling for better visualization */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
h1, h2, h3 {
    color: #333;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
}
.actions a {
    margin-right: 10px;
    text-decoration: none;
    color: #1a73e8;
}
.actions a:hover {
    text-decoration: underline;
}
.collective-actions button {
    padding: 10px 20px;
    margin-right: 10px;
    background-color: #1a73e8;
    color: #fff;
    border: none;
    cursor: pointer;
}
.collective-actions button:hover {
    background-color: #1669c1;
}
.stats {
    margin-bottom: 20px;
}

.navbar-nav .nav-link {
font-size: 1.2rem; /* Increase the font size */
font-weight: 500; /* Make the font weight medium */
color: #fff !important; /* Ensure the text color is white */
font-family: 'Roboto', sans-serif; /* Use a more elegant font */
}

.navbar-nav .mb-4 {
font-size: 2rem; /* Increase the font size */
font-weight: 1000; /* Make the font weight medium */
color: #fff !important; /* Ensure the text color is white */
font-family: 'Roboto', sans-serif; /* Use a more elegant font */
}

.navbar-nav .nav-link:hover {
color: #fcb045 !important; /* Change the hover color */
}

.navbar-brand {
font-size: 1.5rem; /* Increase the brand font size */
font-weight: 700; /* Make the brand font weight bold */
color: #fff !important; /* Ensure the brand text color is white */
font-family: 'Roboto', sans-serif; /* Use a more elegant font */
}



















/* 

.mobile-nav {
    position: fixed;       
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;  
    border-top: 1px solid #ddd;
    z-index: 999;          
    padding: 0.5rem 0;
  }
  
  .mobile-nav .nav-link {
    color: #333;          
    font-size: 0.85rem;   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 0.25rem 0;
  }
  
  .mobile-nav .nav-link i {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
  
  .mobile-nav .nav-link:hover {
    background-color: #f8f8f8;
    text-decoration: none; 
  }
  
  .mobile-nav .menu-label {
    display: block;        
    font-size: 0.7rem;     
    margin-top: 2px;
  }
   */



/* MOBILE NAV - STICKY FOOTER with horizontal scroll */
.mobile-nav {
    position: fixed;
    bottom: 0; 
    left: 0;
    width: 100%;
    background-color: #fff0;
    /* border-top: 1px solid #ddd ; */
    z-index: 999;               /* Ensure it's on top of other elements */
    padding: 0.4rem 0;
    overflow-x: auto;           /* Horizontal scrolling if too many items */
    white-space: nowrap;        /* Prevent items from wrapping to new line */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }
  
  /* Remove default list styling */
  .mobile-nav ul.nav {
    display: inline-flex;        /* Horizontal items side by side */
    flex-wrap: nowrap;           /* Don’t wrap to multiple lines */
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
.mobile-nav .nav-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 0px 8px; /* Increased horizontal padding to add more gap */
}
  
  .mobile-nav .nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fd9644;                /* Adjust text/icon color */
    text-decoration: none;
    font-size: 1.8rem;
    padding: 5px;                 /* Remove extra padding if needed */
  }
  
  .mobile-nav .nav-link i {
    font-size: 1.8rem;
    margin-bottom: 2px;         /* Space between icon & label */
  }
  
  .mobile-nav .nav-link:hover {
    background-color: #f8f8f8;  /* Optional hover effect */
    text-decoration: none;
    color: #000;                /* Keep text visible on hover */
  }
  
  /* 
     If you want to hide your regular .sidebar on <576px
     you already have something like:
     @media (max-width: 576px) { .sidebar { display: none; } }
     That means only the mobile-nav is shown on small screens.
  */
  
  /* navbarNav */


#rich-text-editor- {
    display: none;
}
