body.dashboard {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
}

.dashboard-container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 200px;
  background-color: #e6e6e6;
  padding: 20px;
}

.sidebar .logo img {
  height: 120px;
  margin-bottom: 40px;
}

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

.sidebar li {
  margin: 30px 0;
}

.sidebar a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 30px;
}

.main-content {
  flex: 1;
  padding: 40px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.logout {
  color: red;
  text-decoration: none;
  font-weight: bold;
}

.cards {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  padding: 30px;
  background: #eee;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
  font-size: 25px; /* Add or update this line */
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* === Login Page Styles === */
.login-box {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.login-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.login-box form {
  display: flex;
  flex-direction: column;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-box button {
  padding: 10px;
  background-color: royalblue;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.login-box .links {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin-top: 40px;
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.reports-table th, 
.reports-table td {
  border: 1px solid #ccc;
  padding: 12px;
  text-align: left;
}

.reports-table th {
  background-color: #f2f2f2;
  font-weight: bold;
}

.reports-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.report-filters {
  text-align: center;
  margin: 20px 0;
}

.reports-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.report-filters {
  text-align: center;
  margin: 20px 0;
}

.report-filters button {
  margin: 0 10px;
  padding: 8px 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background-color: #f2f2f2;
  cursor: pointer;
}

.reports-table th, 
.reports-table td {
  border: 1px solid #ccc;
  padding: 16px 20px;
  text-align: left;
}


.report-filters button {
  margin: 0 10px;
  padding: 8px 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  background-color: #f2f2f2;
  cursor: pointer;
}

.report-filters {
  display: flex;
  justify-content: center; /* center the buttons horizontally */
  gap: 30px;                /* space between buttons */
  margin: 20px 0 30px;      /* spacing above and below */
}

.report-filters button {
  padding: 12px 24px;
  font-size: 17px;
  border: none;
  background-color: #eee;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}

.report-filters button:hover {
  background-color: #ddd;
}

.report-filters {
  display: flex;
  justify-content: center;
  gap: 30px; /* Adjust this for more or less space */
  margin: 20px 0;
}

.report-filters button {
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.report-filters button:hover {
  background-color: #0056b3;
}

/* Report Filters - Centered and Spaced Buttons */
.report-filters {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.report-filters button {
  margin: 0 40px; /* This creates horizontal spacing */
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.report-filters button:hover {
  background-color: #0056b3;
}

.compliance-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.compliance-list li {
  padding: 15px;
  margin-bottom: 15px;
  background: #f7f7f7;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}

.compliance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.upload-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

.upload-btn {
  background-color: #007bff;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.settings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.settings-card {
  padding: 20px;
  background: #e6e6e6;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.settings-card:hover {
  transform: translateY(-3px);
}

.settings-card p {
  font-weight: normal;
  margin-top: 8px;
  font-size: 14px;
}

.save-btn {
  padding: 10px 20px;
  background-color: royalblue;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.account-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin-top: 30px;
}

.account-form input {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.add-user-btn {
  margin: 20px 0;
  padding: 10px 20px;
  background-color: royalblue;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.user-form {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  max-width: 500px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user-form h3 {
  margin-bottom: 15px;
}

.user-form form {
  display: flex;
  flex-direction: column;
}

.user-form label {
  margin-top: 10px;
  font-weight: bold;
}

.user-form input,
.user-form select {
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.notification-options {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.switch-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}

/* Toggle Switch */
.switch-label input[type="checkbox"] {
  display: none;
}

.slider {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 26px;
  transition: 0.4s;
  cursor: pointer;
}

.slider:before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #007bff;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.slider.round {
  border-radius: 34px;
}

/* Cloud Integration Styles */

.integration-section {
  margin-top: 30px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.integration-card {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.integration-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.integration-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

.integration-card button {
  padding: 8px 12px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.integration-card button:hover {
  background-color: #0056b3;
}

.funding-cards {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.funding-card {
  flex: 1;
  padding: 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.funding-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #555;
}

.funding-card p {
  font-size: 24px;
  font-weight: bold;
  color: #007bff;
}

/* Dashboard Tiles */
.dashboard-tiles {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.dashboard-tile {
  background-color: #ffffff;
  border: 2px solid #ccc;
  border-radius: 12px;
  padding: 30px 50px;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 220px;
}

.dashboard-tile:hover {
  background-color: #e8f0fe;
  color: #1a73e8;
  border-color: #1a73e8;
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: white;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.reports-table th,
.reports-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.reports-table th {
  background-color: #f0f0f0;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

a.back-btn {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}
a.back-btn:hover {
  text-decoration: underline;
}

.card {
  background-color: #f0f0f0;
  color: #000;
  border: 1px solid #ccc;
  padding: 20px;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
}

.card:hover {
  background-color: #e0e0e0;
}

/* ===== Responsive Styling for Mobile & Tablets ===== */
@media (max-width: 768px) {
  .dashboard-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 10px;
    height: auto;
  }

  .sidebar ul {
    display: flex;
    flex-direction: row;
    gap: 15px;
  }

  .main-content {
    padding: 10px;
    width: 100%;
  }

  .dashboard-tiles,
  .cards,
  .settings-grid,
  .integration-grid,
  .reports-table,
  .task-list {
    flex-direction: column;
    gap: 15px;
  }

  .dashboard-tile,
  .settings-card,
  .integration-card,
  .card {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
  }

  .footer {
    text-align: center;
    font-size: 14px;
  }
}

/* === Login Page Styles === */
body {
  background-color: #f3f4f6;
  font-family: Arial, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.logo img {
  height: 120px;
  margin-bottom: 20px;
}

.login-box {
  background-color: #fff;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.login-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-box button {
  width: 100%;
  padding: 12px;
  background-color: #1f2937;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

.login-box button:hover {
  background-color: #374151;
}

.links {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.links a {
  color: #1f2937;
  text-decoration: none;
}

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

footer.footer {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #555;
}

@media (max-width: 480px) {
  .login-box {
    padding: 20px;
  }
}

.login-page {
  background-color: #f9f9f9;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.logo-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
}

.logo-top-left img {
  height: 100px;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-box {
  background: #fff;
  padding: 

/* Hide sidebar and show hamburger menu on small screens */
.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1001;
}

@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .sidebar {
    position: fixed;
    left: -250px;
    top: 0;
    width: 220px;
    height: 100%;
    background-color: #1f1f2e;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .sidebar.sidebar-active {
    left: 0;
  }

  .main-content {
    margin-left: 0 !important;
    padding: 20px;
  }

  .dashboard-container {
    flex-direction: column;
  }

  .logo img {
    max-width: 120px;
    height: auto;
  }
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  width: 100%;
  padding-right: 30px;
}

.password-wrapper .toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  position: relative;
}

.password-wrapper input[type="password"] {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}

.password-wrapper .toggle {
  position: absolute;
  right: 10px;
  cursor: pointer;
}

