/* MAIN AND BODY ----------------------------------------------------------------------------------------------------- */
body {
  width: 80vw !important; /* Note: we are using important here to override main website css so width can be wider */
  max-width: 1600px !important; 
  margin: 0 auto !important; 
  padding-top: 0px !important;
  overflow-x:scroll;
  box-sizing: border-box !important;  
}

@media screen and (max-width: 768px) {
  .dashboard-content-hidden body {
    padding-top: 20px;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 50px;
    margin: 0;
  }

  body {
    width: 100vw !important;
    padding: 10px !important;
    margin: 0px;;
  }
}

.dashboard-content-hidden body {
  padding-top: 5vh !important;
}

main {
  display: none; 
  padding: 15px;
  width: 100%;
  height: 75vh;
  overflow-y: scroll;
 /* scroll-snap-type: y mandatory; */
}

@media screen and (max-width: 768px) {
  .dashboard-content-hidden main {
    margin: 0;
    padding: 0px;
    width: 100%;
  }
}

/* Landing page logo */
.logo-container {
  height: auto;
  float: left;  
  display: flex;
  align-items: flex-end;
  position: absolute; /* Position the container absolutely */
  bottom: 5vh;
}

@media screen and (max-width: 768px) {
  .logo-container {
    margin-top: 15vh;
    position: relative;
  }
}

.logo-container img {
  width: 5vw; 
  height: auto; 
}

@media screen and (max-width: 768px) {
  .logo-container img {
    margin-left: 5vw;
    width: 20vw; 
    height: auto; 
  }
}

.logo-container p {
  width: 40vw;
  margin-left: 10px;
  flex: 1; 
  font-size: 0.9em; 
  margin-bottom: 0px;
  color: black; 
  line-height: 0.9;
}

@media screen and (max-width: 768px) {
  .logo-container p {
    width: 60vw;
    margin-left: 10px;
    padding: 0px;
    font-size: 0.8em;
    margin-bottom: 0px;
    line-height: 1.5;
  }
}


/* SNAP SCROLLING ----------------------------------------------------------------------------------------------------- */
/* Also turns on/off snap scrolling depending on if you're in the landing page (off) or in the main dashbaord (on) */
:not(.dashboard-content-hidden) html,
:not(.dashboard-content-hidden) body {
  overflow: auto;
}

.dashboard-content-hidden body {
  overflow: auto;
}

:not(.dashboard-content-hidden) html {
  padding-left: 0px;
  margin: none;
}

section {
  display: flex;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-top: 0px;
  padding-bottom: 4vh;
}

@media screen and (max-width: 768px) {
    section {
        padding-bottom: 75px;
    }
}

.dashboard-content-hidden section {
  display: auto;
  scroll-snap-type: none;
  scroll-snap-stop: none;
}


/* SIDEBAR ----------------------------------------------------------------------------------------------------- */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 15vw;
  height: 100%;
  background-color: #f4f4f4;
  padding: 20px;
  overflow-y: auto;
  padding-top: 100px;
}

.sidebar.dashboard-content-hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}

/* Section headers */
.sidebar a {
  display: block;
  margin-bottom: 10px;
  color: rgb(111, 111, 111);
  text-decoration: none;
  cursor: pointer;
  font-size: 1em;
}

.sidebar a:hover {
  color: #000000; 
}

.selectedHeading {
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  sidebar a {
    display: none;
  }
}

/* Landing page logo */
.logo-container-sidebar {
  height: auto;
  display: flex;
  align-items: flex-start;
  position: absolute; 
  bottom: 2vh;
  flex-direction: column;
}

.logo-container-sidebar img {
  width: 5vw; 
  height: auto; 
  padding-bottom: 1px;
}

.logo-container-sidebar p {
  flex: 1; 
  font-size: 0.8em; 
  margin-bottom: 0px;
  color: rgb(111, 111, 111); 
  line-height: 1.1;
  margin-right: 20px;
}

/* Notes */
  .warning-note {
    font-size: 0.875rem;
    color: var(--text-light);
    background-color: #fef3c7;
    margin-bottom: 0px !important;
    margin-top: 3px;
    padding: 5px;
}

/* CONTAINERS ----------------------------------------------------------------------------------------------------- */
#dashboardContainer {
  align-items: center;
}

/* Style for the accordion container */
.accordion {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0px auto;
}

.accordion-p {
  font-size: 0.9em;
}

@media screen and (max-width: 768px) {
  .accordion {
    width: 100%;
    margin: 0px auto;
  }
}

/* Style for accordion sections */
.accordion h4,
.accordion h6 {
  padding-top: 10px;
  font-weight: 600;
  padding-bottom: 5px;
  margin: 0;
  transition: background-color 0.3s;
  width: 100%;
  border-radius: 10px;
}

.accordion h4 {
  font-size: 1.5em;
  font-weight: 600;
}

.accordion h6 {
  font-size: 1em;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .accordion h4,
  .accordion h6 {
    text-align: center;
    padding-top: 10px;
  } 

  .accordion h4 {
    font-size: 1.2em;
    padding-bottom: 10px;
  } 

  .accordion h6 {
    font-size: 0.9em;
    font-weight: 300;
  } 
}

/* Style for accordion content  */
.accordion {
  max-height: 1000px; 
  overflow: hidden;
  padding: 0 0px;
  border-top: 1px solid #ddd;
  transition: max-height 0.3s ease-in-out;
}

.sticky-header {
  position: sticky;
  top: -20px; 
  z-index: 1000;
  background-color: white; 
}

/* HEADERS ----------------------------------------------------------------------------------------------------- */
#selectedCountry {
  font-weight: bold; 
  margin-top: 0px; 
  display: inline-block;
 }

.page-header {
  color: #000;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 5px;
  margin: 0;
  transition: background-color 0.2s ease, opacity 0.2s ease, color 1.5s ease;
  opacity: 1;
}

.page-header.initial {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
}

.page-header.initial h1,
.page-header.initial h4,
.page-header.initial h3 {
  margin: 0; 
}

.page-header.initial h1 {
  font-size: 2em;
}

.page-header.initial h3 {
  font-size: 1.2em;
}

.smaller-font {
  font-size: 2.5em;
}

@media screen and (max-width: 768px) {
  .smaller-font {
    font-size: 2.5em;
  }
}

.regular-font {
  font-size: 2.5em;
}

@media screen and (max-width: 768px) {
  .regular-font {
    font-size: 1.5em;
  }
}

/* TOGGLE BUTTON -------------------------------------------------------------------------------------------------------*/
.controls-container {
    display: flex;
    align-items: center;
  }

@media screen and (max-width: 768px) {
    .controls-container {
        flex-direction: rows;
    }
}
  
.toggle-container {
  width: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  margin-bottom: 12px;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
    .toggle-container {
        width: 80%;
        height: 55%;
        margin-bottom: 12px;
        margin-top: 5px;
      }
}

.toggle-container p {
  text-align: left; /* Center the text horizontally */
  font-size: 0.9em !important;
}

/* Custom class for removing padding */
.toggle-label {
    margin-bottom: 0px;
  }

  .toggle {
    width: 50px;
    height: 50%; 
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
  }
  
  .toggle-circle {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
  }
  
  .toggle.active .toggle-circle {
    transform: translateX(23px) translateY(-50%);
  }

  .toggle.active {
    background-color: #66bb6a; /* Change the background color when toggled on */
  }
    
/* DROPDOWN MENUS ----------------------------------------------------------------------------------------------------- */
.dropdowns-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0px; 
  position: relative;
  top: 0;
  right: 0;
  gap: 20px; 
}

@media screen and (max-width: 768px) {
  .dropdowns-container {
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
    align-items: center;
    width: 90%;
    padding-top: 10px;
  }
}

.financial-oversight-container {
  display: flex;
  font-size: 0.9em;
}

.first-column {
  flex: 2;
  padding-right: 5px; /* Adjust spacing between columns */
}

.second-column {
  flex: 1;
  padding-left: 5px; /* Adjust spacing between columns */
}

.with-border {
  position: relative;
}

.with-border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: #ccc; /* Adjust border color as needed */
  margin-right: 10px; /* Adjust padding around the border */
}

#country-selector,
#language-selector {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 5%;
  padding-right: 5%;
}

@media screen and (max-width: 768px) {
  #country-selector,
  #language-selector {
    margin-right: 0px;
    padding-left: 5%;
    padding-right: 5%;
  }
}

#country-selector label,
#language-selector label {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  #country-selector label,
  #language-selector label {
    display: none;
  }
}

label {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  label {
    margin-right: 0px;
    margin-left: 0px;
  }
}

.container {
  display: flex;
  max-width: 1200px; 
  margin: 0 auto;
}

select {
  padding: 4px;
  width: auto; 
  max-width: 200px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 2px solid #8dcefa; 
  border-radius: 10px; 
  background-color: #fff; 
  font-family: 'Lusitana'; 
  font-size: 0.9em; 
  background: url('./resources/icons/down-chevron.svg') no-repeat right 10px center; 
  background-size: 16px; 
  padding-right: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  select {
    padding: 5px;
    width: auto;
    border: 2px solid #8dcefa; 
    border-radius: 5px; 
    font-size: 0.9em; 
    background: url('./resources/icons/down-chevron.svg') no-repeat right 5px center; 
    background-size: 8px; 
    padding-right: 0px;
    margin-right: 0px;
  }
}

select:focus {
  outline: none;
  background-color: #fff;
  border-color: #8dcefa; /* Change the border color when focused */
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Add a subtle box shadow when focused */
}

.styled-dropdown {
  padding: 7px;
  width: auto; 
  max-width: 500px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  border: 1px dotted #8dcefa; 
  border-radius: 10px; 
  background-color: #fff !important; 
  font-family: 'Lusitana'; 
  font-size: 0.9em; 
  background: url('./resources/icons/down-chevron.svg') no-repeat right center;
  /*background: url('./resources/icons/down-chevron.svg') no-repeat right 10px center; */
  background-size: 16px; 
  padding-right: 20px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .styled-dropdown {
    padding: 5px;
    width: auto;
    border: 2px solid #8dcefa; 
    border-radius: 5px; 
    font-size: 0.9em; 
    background: url('./resources/icons/down-chevron.svg') no-repeat right 5px center; 
    background-size: 8px; 
    padding-right: 0px;
    margin-right: 0px;
  }
}

.styled-dropdown:focus {
  outline: none;
  background-color: #fff;
  border: 1px solid #8dcefa; 
  border-color: #8dcefa; /* Change the border color when focused */
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.5); /* Add a subtle box shadow when focused */
}

/* DATA EXPORT ------------------------------------------------------------------------------------------------------------ */
/* Basic reset for button */
button {
  cursor: pointer;
  font-size: 0.9em;
  width: 5vw;
  margin: 5px; 
  border-radius: 3px;
}

/* Basic styles for the checklist */
.checklist {
  list-style-type: none; 
  padding: 0; 
  display: flex; 
  flex-wrap: wrap;
  max-width: 100%; 
  gap: 20px; 
  margin-right: 10vw;
}

.checklist-container {
  margin: 0.5rem 0; /* Add some margin for spacing */
  font-size: 0.9em;
  border: none !important;
}

.flex-container {
  display: flex;
  justify-content: flex-start;
  border: none !important;
  align-items: center; 
}

.flex-container h4 {
  margin-left: 10px; 
  flex: 0 0 150px; 
}

#resetFiltersBtn {
  width: 120px;
}

#exportButton {
  width: 100px;
}

/* Data download (start) */
/* Style for the data download container */

.data-download-container {
  display: flex;
  flex-direction: column;
  font-size: 0.9em;
}

/* Style for the data table */



.tabulator .tabulator-header .tabulator-headers {
    width: max-content !important;
}

#data-table {
  background-color: white;
  border: 1px solid #e5e7eb;
}


.data-download-dropdown {
  list-style-type: none; 
  display: flex; 
  flex-wrap: wrap;
  gap: 2px;
  margin: 0px;
  padding: 0px;
}

  /* Record Count Styles */
        .record-info {
            margin: 15px 0;
            padding: 10px;
            background-color: #e3f2fd;
            border-radius: 6px;
            border-left: 4px solid #2196f3;
        }

        #recordCount {
            color: #1976d2;
            font-weight: 500;
            margin: 0;
        }


/* Data download (end) */
.checklist {
  margin-bottom: 0px;
  
}

.checklist li {
  display: flex; /* Align checkbox and label horizontally */
  align-items: center; /* Center items vertically */
}


.checklist input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0d6efd; /* Blue accent color for checkboxes */
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

/* For better browser compatibility */
.checklist input[type="checkbox"]:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}


/* CHARTS AND GRAPHICS ----------------------------------------------------------------------------------------------------- */
.bar {
  cursor: pointer;
}

#areaSelector {
  width: 100%;
}

#ccm-container table {
  width: 100%;
  table-layout: fixed;
}

#ccm-container th,
#ccm-container td {
  padding: 8px;
  text-align: left;
  text-align: center;
}

#contactInfo-container div {
  border: none;
  padding: 5px; 
}

/*#contactInfoTable td,*/
#contactInfoTable th {
    background-color: #f3f1f14f;
    border-bottom: 1px solid rgba(0, 0, 0, 0.562);
  }
#dataTable th{
  background-color: #f3f1f14f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.562);
}

#contactInfoTable tbody {
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.562);
}

#contactInfo-container a {
  color: rgb(13, 13, 214);
  text-decoration: underline;
}

#contactInfo-container div,
#contactInfoTable {
  font-size: 0.9em;
  background-color: #f3f1f14f;
}

@media screen and (max-width: 768px) {
  #contactInfo-container div,
  #contactInfoTable {
  font-size: 0.9em;
}
}

/* Timeline */
.x-axis-text {
  font-size: 1.5em;
  font-family: 'Lusitana', sans-serif;
}

.x-axis-line {
  stroke-opacity: 0.3;
}

.today-label {
  font-size: 1em;
}

/* Financial oversight */
.axis-label {
  font-size: 1.5em;
  font-family: 'Lusitana', sans-serif; 
  transform: rotate(0) translate(-10px, 10px); 
  text-anchor: left;
}

/* Performance Framework */
/* Center the buttons within the grantSelector_pf div */
#grantSelector_pf {
  text-align: center;
}

/* Style for the buttons */
#grantSelector_pf button {
  background-color: #4CAF50; /* Green background */
  border: none;
  color: white; /* White text */
  padding: 10px 20px; /* Padding */
  text-align: center; /* Center text */
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px; /* Add margin for spacing */
  cursor: pointer; /* Cursor on hover */
  border-radius: 4px; /* Rounded corners */
}

/* Hover effect for buttons */
#grantSelector_pf button:hover {
  background-color: #45a049; /* Darker green */
}

/* Style for the eligibility table */
#eligibility-data-container table {
  width: 100%;
  table-layout: fixed;
}

#eligibility-data-container th,
#eligibility-data-container td {
  padding: 0px;
  text-align: left;
  border: 0px solid #ddd;
  text-align: center;
}

/* Target the label elements */
#contactInformationHeading,
#eligibilityheaderLabel,
#granttimelineLabel,
#financialoversightLabel,
#performanceframeworkLabel {
  font-size: 1.2em; 
}

#hivLabel,
#tbLabel,
#malariaLabel,
#eligibility-text,
#disease-burden-text {
  font-size: 0.9em; 
}

@media screen and (max-width: 768px) {
  #hivLabel,
  #tbLabel,
  #malariaLabel,
  .eligibility-text {
    font-size: 0.9em; 
  }
}

/* Padding and size of graph containers */
.module-container {
  margin-bottom: 20px;
}

/* Grants container */
#grants-container {
  display: flex;
  height: auto;
  flex-direction: column;
  width: 100%;
  background-color: #f3f1f14f;
  padding: 0px; 
}


  .dropdown-column p {
    margin: 3px 0; /* You can adjust the top and bottom margin as needed */
  }

.label-grant{
  font-size: 100em;
  color: white;
}
#grantline-tooltip tooltip {
  padding: 10px;
  height: auto;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #grants-bar-container, #grantline-tooltip {
    flex: none;
    width: 100%; 
  }
}

.budgetText {
  font-size: 1.2em; /* Adjust the font size as needed */
}

@media screen and (max-width: 768px) {
  .budgetText {
  font-size: 0.9em; /* Adjust the font size as needed */
}
}

.tooltip-timeline {
  font-size: 1.2em !important; 
  font-family: 'Lusitana', sans-serif !important;
}

#contactInfo-container {
  background-color: #f3f1f14f; 
  padding: 0px; 
  text-align: left;
}

/* Styles for the SVG container */
.svg-container {
  width: 100%; 
  max-height: 400px;
}

/* Adjust SVG height for mobile screens */
@media screen and (max-width: 600px) {
  .svg-container {
    max-height: 200px; /* Adjust max height for mobile screens */
  }
}

#eligibility-data-container {
  background-color: #f3f1f14f; /* Light gray background color */
  padding: 10px; /* Add padding as needed */
}

#detailedBudget-container {
  background-color: #f3f1f14f; /* Light gray background color */
  padding: 0px; /* Add padding as needed */
}

#financial-oversight {
  background-color: #f3f1f14f;
}

#data-download {
  background-color: #f3f1f14f;
}

#data-download h4 {
  font-size: 1em;
}

#data-download li {
  font-size: 0.9em;
}

@media screen and (max-width: 600px) {
    #detailedBudget-container {
        padding: 0px;
      }
  }
  


  /* Grant timeline (start) */
  .bar {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .bar:hover {
    filter: brightness(1.1);
  }
  .bar.selected {
    stroke: #ffcc00;
    stroke-width: 3px;
    opacity: 1;
  }
  #tooltip {
    position: absolute;
    text-align: left;
    padding: 0;
    font: 12px sans-serif;
    background: white;
    border: 0;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
    z-index: 1000;
    max-width: 300px;
  }
  .tooltip-header {
    font-size: 14px;
  }
  .tooltip-body {
    background: white;
    border-radius: 0 0 4px 4px;
  }
  .tooltip-body p {
    margin: 4px 0;
  }
  #grant-details-panel {
    position: absolute;
    top: 50px;
    right: 20px;
    width: 350px;
    background: white;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
    display: none;
    z-index: 1000;
    overflow: hidden;
  }
  .details-header {
    padding: 10px 15px;
    color: white;
  }
  .details-header h3 {
    margin: 0;
    font-size: 16px;
  }
  .grant-details-content {
    padding: 15px;
  }
  .close-button {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 15px 15px;
    font-weight: bold;
  }
  .status-indicator {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: bold;
  }
  .status-active {
    background: #2196f3;
    color: white;
  }
  .status-completed {
    background: #4caf50;
    color: white;
  }
  .status-upcoming {
    background: #ff9800;
    color: white;
  }
  #no-data-message {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #666;
    display: none;
  }
  .timeline-title {
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
  }
  .month-label, .year-label {
    pointer-events: none;
  }
  /* Grant timeline (end) */

  /* Grant budget (start) */

  /* Grant budget (end) */


  /* Funding Request Timeline */
    .table-container {
            padding: 30px;
            overflow-x: auto;
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .data-table th {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 20px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1em;
            position: relative;
        }

        .data-table th:first-child {
            border-radius: 15px 0 0 0;
        }

        .data-table th:last-child {
            border-radius: 0 15px 0 0;
        }

        .data-table td {
            padding: 18px 15px;
            border-bottom: 1px solid #f1f3f4;
            color: #2c3e50;
            font-size: 0.95em;
            transition: background-color 0.2s ease;
        }

        .data-table tr:hover td {
            background-color: #f8f9ff;
        }

        .data-table tr:last-child td {
            border-bottom: none;
        }

        .data-table tr:last-child td:first-child {
            border-radius: 0 0 0 15px;
        }

        .data-table tr:last-child td:last-child {
            border-radius: 0 0 15px 0;
        }

        .review-approach {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 600;
            text-align: center;
            white-space: nowrap;
        }

        .full-review {
            background: #e3f2fd;
            color: #1976d2;
        }

        .tailored-transition {
            background: #f3e5f5;
            color: #7b1fa2;
        }

        .tailored-focused {
            background: #e8f5e8;
            color: #388e3c;
        }

        .program-continuation {
            background: #fff3e0;
            color: #f57c00;
        }

        .tailored-nsp {
            background: #fce4ec;
            color: #c2185b;
        }

        .window-badge {
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8em;
            font-weight: 600;
            text-align: center;
        }

        .window-1 { background: #ffebee; color: #c62828; }
        .window-2 { background: #e8eaf6; color: #303f9f; }
        .window-3 { background: #e0f2f1; color: #00695c; }
        .window-4 { background: #fff8e1; color: #ef6c00; }
        .window-5 { background: #f3e5f5; color: #7b1fa2; }

        .months-cell {
            font-weight: 600;
            color: #667eea;
            text-align: center;
        }

        .no-data {
            text-align: center;
            padding: 50px 20px;
            color: #666;
            font-size: 1.1em;
        }

        .no-data i {
            font-size: 3em;
            margin-bottom: 20px;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
           
            .table-container {
                padding: 15px;
            }
            
            .data-table th,
            .data-table td {
                padding: 12px 8px;
                font-size: 0.9em;
            }
        }