/*!******************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/styles.css ***!
  \******************************************************************/
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
}

/* Wrapper should be full width */
.wrapper {
    display: flex;
    width: 100%;
}
/* Sidebar Styling */
#sidebar {
    position: fixed;
    width: 230px; /* Adjust width */
    height: 100vh; /* Full height */
    background: linear-gradient(180deg, #8b5e3c, #6a4829); /* Gradient color */
    color: white;
    padding: 20px;
    transition: all 0.3s;
}

#sidebar .sidebar-title {
    font-family: "Poppins", sans-serif;
    text-align: center;
    font-size: 17px;
    font-weight: bolder;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 0px; 
    margin-top: 5px;
    letter-spacing: 0.5px; 
}

#sidebar ul.components {
    padding: 0;
    list-style: none;
}

#sidebar ul li {
    padding: 15px;
    font-size: 14px;
}

#sidebar ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s;
}

#sidebar ul li a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Icons */
#sidebar ul li a i {
    font-size: 14px;
}


/* Header Row for Spacing */
.header-row {
    display: flex;
    justify-content: space-between; /* Spreads items */
    align-items: center;
    width: 100%; /* Full width */
    padding: 0 20px; /* Adds spacing */
}

/* Dashboard Title Styling */
.dashboard-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0; /* Removes default margin */
}

/* Report Button Styling */
.report-btn {
    font-size: 14px;
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}


.card {
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.card h2 {
    font-size: 28px;
    font-weight: bold;
}

/* Custom Card Design */
.custom-card {
    border-radius: 10px;
    background-color: white;
    border-left: solid, burlywood;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Spread items inside */
}

/* Card Text */
.custom-card .text-left {
    text-align: left; /* Align text to left */
}

.custom-card h5 {
    font-size: 12px; /* Small uppercase text */
    font-weight: bold;
    color: #805333; /* Soft brown color */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.custom-card h2 {
    font-size: 24px; /* Large number */
    font-weight: bold;
    color: #333;
    margin-bottom: 0;
}

/* Card Icon */
.card-icon {
    font-size: 32px; /* Increase icon size */
    color: #d3d3d3; /* Light grey */
}



/* Increase chart width */
.chart-container {
    width: 100%;
    max-width: 100%;/* Increase max width */
    height: 400px; /* Keep height fixed */
    margin: auto; /* Center it */
}

/* ============================= */
/* Admin Header - Full Width     */
/* ============================= */

/* Admin Header */
.admin-header {
    display: flex;
    justify-content: flex-end; /* Spreads elements apart */
    align-items: center;
    padding: 15px 20px;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    width: calc(100% - 230px); /* Full width minus sidebar */
    position: fixed;
    top: 0;
    left: 230px; /* Align next to sidebar */
    height: 75px;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

/* Title on the Left */
.header-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-left: 20px; /* Adds space from the sidebar */
}

/* Admin Profile on the Right */
.admin-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* User Profile Dropdown */
.admin-header .dropdown-toggle {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Admin Name */
.admin-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Admin Icon */
.admin-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Placeholder if no image */
}

/* Dropdown Menu */
.dropdown-menu {
    min-width: 150px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
}

.dropdown-item i {
    margin-right: 8px;
}

/* Main Content Area (Expands Full Width) */
.main-content {
    flex-grow: 1; /* Expands to fill remaining space */
    width: 100%; /* Take full width */
   
}

#content {
    width: calc(100% - 230px); /* Full width minus sidebar */
    margin-left: 230px; /* Matches sidebar width */
    margin-top: 75px; /* Push content below header */
    padding: 20px;
    transition: margin-left 0.3s;
}


/* Make container full width */
.container-fluid {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
}

.dashboard-title {
    font-size: 22px; /* Reduce a bit if preferred */
    font-weight: 600;
    margin: 0;
}
  
.card .btn {
    font-size: 14px;
    padding: 6px 10px;
}

.card-header {
    background-color: #f9f9f9; /* subtle light background */
    border-bottom: 1px solid #dee2e6;
    padding: 16px 20px;
}
  

html, body {
    height: 100%;
    margin: 0;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    flex: 1; /* pushes footer to bottom */
    display: flex;
}
  
.fixed-footer {
    position: fixed;
    bottom: 0;
    left: 230px; /* same as sidebar width */
    width: calc(100% - 230px); /* avoid overlapping the sidebar */
    background-color: #f2f2f2;
    color: #5f6368;
    font-size: 13px;
    border-top: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    z-index: 999;
    box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.05);
}

.internal-footer small {
    display: block;
    line-height: 1.6;
}

.card.form-card-right {
    max-width: 1200px;           
    margin-left: 40px;           
    margin-right: auto;          

}
 

.smaller-form {
    font-size: 14px;         
  }
  
  .smaller-form .form-control {
    font-size: 14px;             
    padding: 6px 10px;          
  }
  
  .smaller-form .form-label {
    font-weight: 500;            
    font-size: 14px;
  }
  

  
  

