* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #F5F7FA;
  overflow-x: hidden;
}
.table-container {
  max-height: 550px;   /* jitni height chahiye utni rakho */
  overflow-y: auto;    /* vertical scroll */
  border-radius: 10px;
}


/* optional: header sticky */
thead th {
  position: sticky;
  top: 0;
  background: #2b6cb0;
  color: #fff;
  z-index: 1;
}
table {
  width: 75%;
  border-collapse: collapse;
  margin: 0 auto;
}

th, td {
  padding: 12px;
  border: 1px solid #ccc;
  text-align: center;
}

th {
  background: #2b6cb0;
  color: #fff;
}

tbody tr:nth-child(odd) {
  background: #eef5ff;
}

tbody tr:nth-child(even) {
  background: #ffffff;
}

tbody tr:hover {
  background: #d6e6ff;
}









/* FOOTER MAIN */
.footer {
  background: #2b6cb0;
  color: #fff;
  padding-top: 40px;
}

/* CONTAINER */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;   /* thoda balanced */
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* COLUMN COMMON */
.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #D0A600;
}

.footer-col p,
.footer-col li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #e0e0e0;
}

/* LINKS */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: none;
  color: #e0e0e0;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #FFD15C;
  padding-left: 5px;
}

/* LOGO BOX */
.logo-box h3 {
  font-size: 1.4rem;
  color: #D0A600;   /* Marathi green */
}

.logo-box p {
  font-style: italic;
  margin-top: 10px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background: #1e4e8c;
  margin-top: 20px;
  font-size: 0.9rem;
}

