* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header-parent {
  background-color: #e8cc92;
}
.header {
  position: relative;
  padding: 4px 40px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-left {
  display: flex;
  align-items: center;
}
.logo {
  height: 130px;
  margin-right: 20px;
}
.logo:active {
  filter: brightness(0.8) saturate(1.5);
  transform: scale(0.95);
}
.header-buttons {
  justify-content: end;
  bottom: 5px;
  right: -10%;
  padding: 0 10px 10px;
  display: flex;
  gap: 5px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #7d1f27;
  color: #fff;
  padding: 10px 20px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  height: 40px;
  min-width: 90px;
}
.nav-btn:hover {
  background-color: #5e161d;
}
.logout-form {
  margin: 0;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-img {
  height: 75px;
  width: 75px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}
.container {
  background-color: rgba(255, 255, 255, 0.25);
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
}
.container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 24px;
  color: #111827;
}
.input-group {
  margin-bottom: 18px;
  position: relative;
}
.input-group input,
.input-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.input-group input:focus,
.input-group textarea:focus {
  outline: 0;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
textarea {
  resize: none;
  min-height: 70px;
}
.btn {
  width: 100%;
  padding: 12px;
  background-color: #2563eb;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn:hover {
  background-color: #1e40af;
}
p {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: #4b5563;
}
a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}
#countryInput {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
  box-sizing: border-box;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}
#countryInput:focus {
  outline: 0;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}
#countryInput.country-active {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d1d5db;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1;
}
.country-dropdown li {
  padding: 8px 10px;
  cursor: pointer;
}
.country-dropdown li:hover {
  background-color: #f0f0f0;
}
.footer {
  background-color: #e8cc92;
  padding: 5px 20px;
  font-size: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.footer-content {
  display: grid;
  justify-content: space-between;
  grid-template-columns: 2fr 1fr;
  flex-wrap: nowrap;
  gap: 20px;
  width: 100%;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 35px;
}
.footer-info {
  width: 5px 10px;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-line .icon {
  font-size: 18px;
  line-height: 1.6;
}
.footer-line .text {
  flex: 1;
}
.footer-hr {
  position: relative;
  left: 0;
  margin: 0;
  padding: 0;
  height: 1px;
  width: 100%;
  background-color: #000;
  border: none;
}
.footer-right {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.footer-right h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.footer-right ul {
  list-style: none;
  padding: 0;
  columns: 2;
  gap: 10px;
}
.footer-right ul li {
  margin-bottom: 6px;
}
.footer-right ul li a {
  text-decoration: none;
  color: #111827;
}
.footer-right ul li a:hover {
  text-decoration: underline;
}
.footer-bottom {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #111827;
}
.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in;
}
.custom-popup-box {
  background-color: #fff;
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}
.custom-popup-box p {
  font-size: 18px;
  color: #28a745;
  margin-bottom: 15px;
}
.custom-popup-box button {
  padding: 8px 20px;
  border: none;
  background-color: #28a745;
  color: #fff;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}
.custom-popup-box button:hover {
  background-color: #218838;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.dashboard-section {
  max-width: 800px;
  margin: 40px auto;
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
}
.add-count-btn {
  position: absolute;
  top: 20px;
  right: 15px;
  padding: 10px 16px;
  background-color: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.add-count-btn:hover {
  background-color: #1e40af;
}
.chart-heading {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-top: 40px;
  margin-bottom: 20px;
}
canvas {
  margin-bottom: 20px;
}
.entry-container {
  background: #fff;
  padding: 30px;
  max-width: 600px;
  margin: 50px auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.entry-container h2 {
  text-align: center;
  font-size: 24px;
  color: #1f2937;
}
.mantra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}
.mantra-row label {
  flex: 1;
  font-size: 16px;
  color: #374151;
}
.mantra-row input {
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-align: center;
}
.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  gap: 10px;
}
.btn-reset {
  background-color: #9ca3af;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  flex: 1;
}
.btn-reset:hover {
  background-color: #6b7280;
}
.btn-delete {
  background-color: #dc3545;
  color: #fff;
}
.btn-delete:hover {
  background-color: #8b0000;
}
.logout-form {
  margin-left: 10px;
}
.logout-btn {
  background-color: #b91c1c;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.logout-btn:hover {
  background-color: #991b1b;
}
.view-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}
.view-header h2 {
  font-size: 24px;
  color: #1f2937;
}
.view-header .btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.view-header .btn-primary:hover {
  background-color: #1e40af;
}
.entries-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.entry-card {
  background-color: #fff;
  padding: 20px 25px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.entry-date {
  font-size: 18px;
  color: #111827;
  margin-bottom: 12px;
}
.entry-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.entry-card ul li {
  font-size: 16px;
  color: #374151;
  margin-bottom: 4px;
}
.entry-actions {
  text-align: right;
}
.btn-sm.btn-secondary {
  background-color: #6b7280;
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.btn-sm.btn-secondary:hover {
  background-color: #4b5563;
}
.view-container {
  background: #fff;
  padding: 30px;
  max-width: 95%;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}
.table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.table-header h2 {
  font-size: 24px;
  color: #1f2937;
}
.table-header .btn-primary {
  background-color: #2563eb;
  color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.table-header .btn-primary:hover {
  background-color: #1e40af;
}
.no-data {
  text-align: center;
  font-size: 16px;
  color: #6b7280;
  margin-top: 20px;
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.mantra-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.mantra-table td,
.mantra-table th {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  word-wrap: break-word;
}
.mantra-table th {
  background-color: #f9fafb;
  font-weight: 600;
  color: #111827;
}
.mantra-table tbody tr:nth-child(2n) {
  background-color: #f3f4f6;
}
.edit-link {
  background-color: #6b7280;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.edit-link:hover {
  background-color: #4b5563;
}
.add-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
  margin-left: 20px;
}
.entry-container label {
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
  margin-bottom: 8px;
  display: block;
}
.entry-container input[type="date"] {
  padding: 10px 12px;
  font-size: 15px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  margin-bottom: 20px;
}
.mantra-table td input[type="number"] {
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  text-align: center;
}
.button-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}
.button-group .btn {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.button-group .btn-reset {
  background-color: #9ca3af;
  color: #fff;
}
.button-group .btn-reset:hover {
  background-color: #6b7280;
}
.button-group .btn i,
.button-group .btn-reset i {
  margin-right: 6px;
}
.pagination {
  margin-top: 20px;
  text-align: center;
}
.pagination a,
.pagination span.current {
  margin: 0 5px;
  padding: 6px 12px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
}
.pagination a {
  background-color: #f0f0f0;
  color: #333;
}
.pagination span.current {
  background-color: #007bff;
  color: #fff;
}
.month-select-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: "Segoe UI", sans-serif;
}
.month-select-form label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.month-select-form select {
  padding: 6px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fdfdfd;
  color: #333;
  transition: all 0.2s ease;
}
.month-select-form select:focus,
.month-select-form select:hover {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
  outline: 0;
}
.month-select-form button {
  padding: 6px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  background-color: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.month-select-form button:hover {
  background-color: #1e3a8a;
}
.totals-section {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #f9fafb;
  max-width: 500px;
}
.totals-section h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #111827;
  font-weight: 600;
}
.totals-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.totals-section li {
  margin: 6px 0;
  font-size: 16px;
  color: #1f2937;
}
.custom-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.custom-popup-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.custom-popup-box.success {
  border-left: 5px solid green;
}
.custom-popup-box.error {
  border-left: 5px solid red;
}
.custom-popup-box button {
  margin-top: 10px;
  padding: 6px 14px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.chart-wrapper {
  position: relative;
  height: 300px;
  width: 100%;
}
.view-add {
  margin-right: 130px;
}
.edit-button-mobile {
  display: none;
}
.dashboard-container {
  padding: 1.5rem 1rem;
  max-width: 1000px;
  margin: auto;
}
.dashboard-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #ff0;
  font-weight: 700;
}
.dashboard-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}
.dashboard-card {
  flex: 1 1 calc(50% - 0.75rem);
  background-color: #fffaf0;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: 0.2s ease-in-out;
  text-align: center;
  min-width: 280px;
  max-width: 100%;
  box-sizing: border-box;
}
.dashboard-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.dashboard-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #212529;
  font-weight: 500;
}
.dashboard-card p {
  font-size: 1.5rem;
  color: #0d6efd;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.inner-card {
  background: white;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.inner-card:hover {
  transform: scale(1.02);
}

.profileIcon {
  width: 25px;
}
.profileUpdateIcon {
  width: 60px;
  margin-top: 5%;
}
.mantras-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.mantras-container h1 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.mantras-parent {
  min-height: 56vh;
}
.mantra-table {
  width: 100%;
  border-collapse: collapse;
}
.mantra-table td,
.mantra-table th {
  padding: 14px 16px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
  font-size: 15px;
}
.mantra-table th {
  background-color: #f8f8f8;
  font-weight: 600;
  color: #333;
}
.mantra-row.playing {
  background-color: #e8f2ff;
  border-left: 4px solid #006eff;
}
.play-btn {
  background-color: #006eff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  transition: background-color 0.3s ease;
}
.play-btn:hover {
  background-color: #05c;
}
.custom-player {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.custom-player.hidden {
  display: none;
}
.progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.progress-bar {
  -webkit-appearance: none;
  appearance: none;
  width: 180px;
  height: 8px;
  border-radius: 6px;
  background-color: #ddd;
  outline: 0;
}
.progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #006eff;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}
.progress-bar::-moz-range-thumb {
  height: 14px;
  width: 14px;
  border-radius: 50%;
  background-color: #006eff;
  cursor: pointer;
}
.time-display {
  font-size: 13px;
  color: #555;
  min-width: 75px;
}
@media (max-width: 768px) {
  .mantra-table td,
  .mantra-table th {
    font-size: 13px;
    padding: 10px;
  }
  .play-btn {
    font-size: 13px;
    padding: 6px 12px;
  }
  .progress-bar {
    width: 100%;
  }
  .custom-player {
    flex-direction: column;
    align-items: flex-start;
  }
}
.profile-container {
  max-width: 650px;
  padding: 1% 5% 3%;
  margin: 5% 25%;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.profile-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5%;
}
.profile-container h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
  color: #333;
}
.profile-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profile-form .input-group {
  display: flex;
  flex-direction: column;
}
.profile-form .input-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.profile-form .input-group input,
.profile-form .input-group textarea {
  font-size: 15px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.profile-form .input-group input:focus,
.profile-form .input-group textarea:focus {
  border-color: #006eff;
  box-shadow: 0 0 4px rgba(0, 110, 255, 0.3);
  outline: 0;
}
.profile-form .input-group textarea {
  resize: vertical;
  min-height: 80px;
}
.profile-form .btn {
  background-color: #006eff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.profile-form .btn:hover {
  background-color: #0050cc;
}
.custom-popup-box {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}
.custom-popup-box.success {
  background-color: #d1f2d1;
  color: #27632a;
  border: 1px solid #b6e4b6;
}
.custom-popup-box.error {
  background-color: #fbe0e0;
  color: #8a1f1f;
  border: 1px solid #f5c2c2;
}
@media (max-width: 768px) {
  .dashboard-card {
    flex: 1 1 100%;
  }
  .dashboard-title {
    font-size: 1.6rem;
  }
  .dashboard-card p {
    font-size: 1.2rem;
  }
}
@media (max-width: 600px) {
  .mantra-row {
    padding: 5%;
  }
  .mantra-header {
    width: 100%;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .mantra-header-left {
    min-width: auto;
    flex: 3;
  }
  .play-btn-parent {
    flex: 1;
  }
  .custom-player {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    gap: 10px;
    width: 100%;
  }
  .progress-container {
    width: 100%;
  }
  .progress-bar {
    width: 100%;
  }
  .mantra-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .nav-btn {
    padding: 6px 10px;
    font-size: 12px;
    height: 32px;
    min-width: 70px;
    border-radius: 4px;
  }
  .mantra-row {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .profile-container {
    max-width: 90%;
    padding: 1% 5% 3%;
    margin: 5% 5%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  .footer-left {
    gap: 15px;
  }
  .logo {
    max-width: 100%;
  }
  .btn,
  .btn-reset,
  .logout-btn,
  .month-select-form button {
    font-size: 14px;
    padding: 10px 14px;
  }
  .input-group input,
  .input-group textarea {
    font-size: 14px;
  }
  .entry-container input[type="date"] {
    font-size: 14px;
  }
  .totals-section li {
    font-size: 14px;
  }
  .numbers-col {
    width: 10%;
  }
  .mantra-col {
    width: 20%;
  }
  .view-container {
    padding: 10px 0;
    max-width: 100%;
  }
  .edit-button-td {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .edit-button-mobile {
    display: inherit;
    background-color: transparent !important;
  }
  .entry-container h2 {
    margin-bottom: 0;
  }
  .edit-button {
    display: none;
  }
  .view-header {
    padding: 0 10px;
  }
  .view-header h2 {
    font-size: 16px;
  }
  .add-btn-wrapper {
    margin-bottom: 0;
    margin-left: 0;
    font-size: 12px;
  }
  .mantra-table td,
  .mantra-table th {
    padding: 12px 0;
    text-align: center;
    border: 1px solid #e5e7eb;
    word-wrap: break-word;
  }
  .header {
    display: flex;
    flex-direction: column;
  }
  .footer-content {
    justify-content: center;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    overflow: hidden;
  }
  .footer-info {
    font-size: 14px;
  }
  .footer-right {
    font-size: 14px;
    width: 100%;
    text-align: left;
    margin-left: 25%;
  }
  .footer-logo {
    width: 130px;
  }
  .header-logo {
    height: 100px;
  }
  .header-img {
    height: 55px;
    width: 55px;
  }
  .add-count-btn {
    font-size: 12px;
    padding: 5px 5px;
    right: 8px;
  }
  #countryInput {
    padding: 12px 13px;
  }
  .btn,
  .btn-reset,
  .logout-btn,
  .month-select-form button {
    font-size: 14px;
    padding: 8px 12px;
  }
  .mantra-table td,
  .mantra-table th {
    font-size: 10px;
  }
  .mantra-table th {
    font-size: 8px;
  }
  .view-header .btn-primary {
    font-size: 12px;
  }
  .pagination a,
  .pagination span.current {
    font-size: 12px;
  }
  .backToView {
    font-size: 12px !important;
  }
  .button-group .btn {
    font-size: 14px;
  }
  .addCountTable tr th {
    font-size: 12px;
  }
  .addCountTB tr td {
    font-size: 13px;
  }
  .view-header-cus {
    margin: 5px -9px 25px;
  }
  .view-header {
    flex-wrap: nowrap;
    gap: 5px;
  }
  .entry-container h2 {
    margin-bottom: 0 !important;
  }
  .header-buttons {
    margin-left: 100px;
    font-size: 8px;
  }
  .chart-wrapper {
    height: 220px;
  }
  #mantraChart {
    width: 100% !important;
    height: auto !important;
  }
  .month-select-form {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .dashboard-top {
    display: flex;
    justify-content: space-between;
  }
  .view-add {
    margin-right: 80px;
  }
}
