/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
}

/* Container */
.pad-Adhikar-Container {
  width: 90%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Inner Header */
.inner-header {
  background-color: #2c3e50;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.inner-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner-header .page-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.inner-header .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.inner-header .breadcrumb li {
  display: inline;
  font-size: 14px;
}

.inner-header .breadcrumb a {
  color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.inner-header .breadcrumb a:hover {
  color: #1abc9c;
}

.inner-header .breadcrumb .active {
  color: #bdc3c7;
}

/* Print Button */
.print-button {
  float: right;
}

.print-button a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  background-color: #3498db;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.print-button a:hover {
  background-color: #2980b9;
}

/* Content Section */
.content-section {
  margin-top: 20px;
}

/* Table Styling */
.table-container {
  overflow-y: auto; /* Enable vertical scrolling */
  max-height: 400px; /* Set a fixed height for the scrollable area */
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.table th {
  background-color: #3498db;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.table tr:hover {
  background-color: #f1f1f1;
}

/* Scrollbar Styling */
.table-container::-webkit-scrollbar {
  width: 8px;
  height: 8px; /* For horizontal scrollbar */
}

.table-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
  background: #3498db;
  border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
  background: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inner-header .container {
    flex-direction: column;
    text-align: center;
  }

  .inner-header .page-title {
    font-size: 22px;
  }

  .inner-header .breadcrumb {
    justify-content: center;
    margin-top: 10px;
  }

  .print-button {
    float: none;
    margin-top: 10px;
  }

  .table th,
  .table td {
    padding: 8px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .inner-header .page-title {
    font-size: 20px;
  }

  .inner-header .breadcrumb li {
    font-size: 12px;
  }

  .print-button a {
    font-size: 12px;
    padding: 6px 10px;
  }

  .table th,
  .table td {
    padding: 6px;
    font-size: 10px;
  }
}