body {
  font-family: 'PT Serif', 'Noto Serif Devanagari', serif;
  background-color: #ebebeb;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

hr {
  border: 0;
  height: 1px;
  margin: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

#banner {
  width: 100%;
  background-color: #202e51;
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
}

#menu-icon {
  font-size: 24px;
  cursor: pointer;
  padding: 10px 10px 10px 20px;
  -webkit-tap-highlight-color: transparent;
}

#banner-content {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  -webkit-tap-highlight-color: transparent;
}

#banner img {
  width: 40px;
  height: auto;
  margin-right: 15px;
  border-radius: 20%;
}

#banner h1 {
  font-size: 20px;
  margin: 0;
}

#title {
  color: #202e51;
  font-size: 20px;
  margin: 0;
  padding: 10px;
  padding-bottom: 0;
}

#admin-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  padding-bottom: 10px;
}

#admin-info > div:first-child {
  font-size: 14px;
  color: #555;
  font-weight: bold;
}

#admin-info > div:last-child {
  display: flex;
  gap: 10px;
}

.icon-circle {
  cursor: pointer;
  width: 35px;
  height: 35px;
  background-color: #202e51;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  padding: 5px;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease-in-out;
}

.icon-circle i {
  font-size: 18px;
  line-height: 1;
}

.icon-circle:active {
  transform: scale(0.9);
}

.drawer {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #ebebeb;
  transition: left 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  padding: 0;
  box-shadow: none;
}

.drawer.open {
  left: 0;
  box-shadow: 2px 0 5px rgba(0,0,0,0.5);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

.drawer-title {
  font-weight: bold;
  color: #202e51;
  font-size: 20px;
  padding-left: 5px;
}

.drawer-close {
  cursor: pointer;
}

.drawer-close i {
  font-size: 24px;
  line-height: 1;
}

.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer li {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.drawer-item-content {
  font-size: 20px;
  padding: 10px 20px;
  font-weight: bold;
  color: #202e51;
  border-bottom: 1px solid #ccc;
}

.drawer-section {
  margin-top: 10px;
}

.ripple-effect {
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.ripple-white .ripple {
  background: white !important;
}

.ripple-dark .ripple {
  background: #202e51 !important;
}

#card-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 10px;
}

@media (min-width: 768px) {
  #card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: background-color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.card:hover {
  background-color: #9097a8;
}

.card img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-right: 10px;
  border-radius: 50px;
}

.card-body {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}

.card-time {
  font-size: 12px;
  font-weight: bold;
  color: #666;
  margin: 0;
}

#loader {
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

#loader div {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top: 5px solid #202e51;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#footer {
  text-align: center;
  font-size: 15px;
  color: #202e51;
  font-weight: bold;
  margin: 10px;
}

.hidden {
  display: none !important;
}

#content {
  padding: 10px;
  font-size: 18px;
}

#content h1, #content h2, #content h3 {
  color: #202e51;
}

#content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 18px;
  text-align: left;
}

#content table thead tr {
  background-color: #202e51;
  color: #fff;
}

#content table th, #content table td {
  padding: 10px;
  border: 1px solid #202e51;
}

#content table tbody tr:nth-child(even) {
  background-color: #fff;
}

#content table tbody tr:hover {
  background-color: #ddd;
}

@media (max-width: 600px) {
  #content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

#content img {
  max-width: 100%;
  height: auto;
}



#pagination {
  text-align: center;
  margin: 20px 0;
}

#pagination button,
#pagination span {
  margin: 0 5px;
  padding: 8px 12px;
  background-color: #202e51;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}

#pagination span.active {
  background-color: #9097a8;
}