/* Root variables for the admin dashboard */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
    /* Colors */
    --custom-1: #fcfcfc;
    --custom-2: #f9f9f9;
    --custom-3: #efefef;
    --custom-4: #e8e8e8;
    --custom-5: #e0e0e0;
    --custom-6: #d8d8d8;
    --custom-7: #cecece;
    --custom-8: #bbb;
    --custom-9: #000;
    --custom-10: #2e2e2e;
    --custom-11: #646464;
    --primary-color: #202020;
    --header-background:#000000;
    --secondary-color: #f5f5f5;
    --accent-color: #f5a623;

    --background-color: #f8f8f8;
    --sidebar-background: #ffffff;
    --card-background: #ffffff;
    --text-color: #0E0E0E;
    --text-muted-color: #7f8c8d;
 
  
    --custom-a1: #00000003;
    --custom-a2: #00000006;
    --custom-a3: #00000010;
    --custom-a4: #00000017;
    --custom-a5: #0000001f;
    --custom-a6: #00000027;
    --custom-a7: #00000031;
    --custom-a8: #00000044;
    --custom-a9: #000000;
    --custom-a10: #000000d1;
    --custom-a11: #0000009b;
    --custom-a12: #000000df;
  
     --custom-contrast: #fff;
    --custom-surface: #f8f8f8cc;
    --custom-indicator: #000;
    --custom-track: #000;

    /* Fonts */
    --font-family: "Inter", sans-serif;
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 20px;
  
    /* Spacing */
    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 24px;
  
    /* Border Radius */
    --border-radius: 8px;
  
    /* Shadows */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  
*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none !important;
    list-style: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
  
/* General Reset */
body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  background-color: var(--background-color);
  color: var(--text-color);
}
  
  /* Sidebar Styles */

  .sidebar {
    width: 250px;
    left: 1rem;
    margin-top:60px;
    height: 100vh;
    background-color: var(--sidebar-background);
    color: var(--text-color);
    padding: var(--spacing-medium);
    position: fixed;
  }
  
 
  .sidebar {
    width: 250px;
    height: 100vh;
    background-color: #ffffff; /* White background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background-color: #f1f5f9;  */
    border-radius: 8px;
    padding: 10px 15px;
    text-decoration: none;
    color: #334155; /* Slate grey */
    font-size: 16px;
    /* font-weight: 500; */
    transition: background-color 0.3s ease;
  }

  .sidebar-item:hover {
    /* background-color: #e2e8f0; Lighter blue-grey on hover */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  }

  .sidebar-item.active {
    background-color: #e8eff8b0; 
    color: #334155; /* Dark blue for active state */
    /* box-shadow: 0 0 8px #4c4c4c5b; */
    box-shadow: rgba(0, 0, 0, 0.15) 0px 12px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  }

  .sidebar-item i {
    font-size: 18px;
    margin-right: 10px;
    color: #64748b; /* Greyish blue for icons */
  }

  .sidebar-item span {
    flex-grow: 1;
  }

  .sidebar-item .chevron {
    font-size: 14px;
    color: #94a3b8; /* Light grey */
  }
  
  /* Header Styles */
  .header {
    height: 75px;
    background-color: var(--header-background);
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-medium);
    position: fixed;
    width: 100%;
    /* width: calc(100% - 250px); */
    /* left: 250px; */
    top: 0;
    z-index: 10;
    
  }
  
  /* Main Content Styles */
  .main-content {
    margin-left: 250px;
    padding: var(--spacing-large);
    padding-top: 80px;
  }
  
  /* Card Styles */
  .card {
    background-color: var(--card-background);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: var(--spacing-medium);
    margin-bottom: var(--spacing-large);
  }
  
  /* Button Styles */
  .button {
    background-color: var(--primary-color);
    color: white;
    padding: var(--spacing-small) var(--spacing-medium);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: var(--font-size-base);
    transition: background 0.3s ease;
  }
  
  .button:hover {
    background-color: var(--secondary-color);
  }
  .form-control:focus {
    background-color: #fbfbfb;
    border-color: #6C55A3;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .form-control {
    background-color: rgba(52, 58, 64, 0.01);
    border: 1px solid rgba(155, 155, 174, 0.3);
    padding: 9px 11px;
    font-size: 14px;
  }
  .form-control::-webkit-input-placeholder {
    font-size: 15px;
    color: #9b9bae;
  }
  .form-control:-ms-input-placeholder {
    color: #9b9bae;
    font-size: 15px;
  }
  .form-control::-ms-input-placeholder {
    font-size: 15px;
    color: #9b9bae;
  }
  .form-control::placeholder {
    color: #9b9bae;
    font-size: 15px;
  }
  .plus-square{
    cursor: pointer;
    background-color: #50e3c228;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  
  }
  .plus-square:hover{
    /* background-color: red; */
    transform: scale(1.1);
  }
  .responsive-table li {
    border-radius: 3px;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
  }
  .responsive-table .table-header {
    background-color: #F1F4F9;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
  }
  .responsive-table .table-row {
    background-color: #ffffff;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
  }
  .responsive-table .col-1 {
    flex-basis: 20%;
  }
  .responsive-table .col-2 {
    flex-basis: 25%;
  }
  .responsive-table .col-3 {
    flex-basis: 15%;
  }
  .responsive-table .col-4 {
    flex-basis: 20%;
  }
  .responsive-table .col-5 {
    flex-basis: 20%;
  }
  @media all and (max-width: 767px) {
    .responsive-table .table-header {
      display: none;
    }
    .responsive-table li {
      display: block;
    }
    .responsive-table .col {
      flex-basis: 100%;
    }
    .responsive-table .col {
      display: flex;
      padding: 10px 0;
    }
    .responsive-table .col:before {
      color: #6c7a89;
      padding-right: 10px;
      content: attr(data-label);
      flex-basis: 50%;
      text-align: right;
    }
  } 
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .sidebar {
      width: 200px;
    }
  
    .header {
      width: calc(100% - 200px);
      left: 200px;
    }
  }
  

