.pcf-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  font-family: Arial, sans-serif;
}

.pcf-container button {
  width: 200px;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: bold;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pcf-container button:hover {
  background-color: #005177;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.pcf-container button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#pcf-form,
#pcf-locator,
#pcf-directory {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

#pcf-search,
#pcf-state,
#pcf-district,
#pcf-post-office,
#pcf-directory-state,
#pcf-directory-district {
  flex-grow: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  min-width: 200px;
}

#pcf-form button {
  padding: 10px 10px;
  font-size: 14px;
  background-color: #0073aa;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

#pcf-results,
#pcf-locator-results,
.pcf-directory-results {
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 20px;
}

.pcf-result-item {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid #ddd;
}

.pcf-result-item:last-child {
  border-bottom: none;
}

.pcf-result-item h4 {
  margin: 0 0 5px 0;
  color: #0073aa;
}

.pcf-result-item p {
  margin: 10px 0;
}

.pcf-directory-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
}

.pcf-directory-table th,
.pcf-directory-table td {
  padding: 5px;
  border: 1px solid #ddd;
  text-align: left;
}

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

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

#pcf-directory-table tr:hover {
  background-color: #f5f5f5;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
  .pcf-container {
    padding: 10px;
  }

  .pcf-table th,
  .pcf-table td {
    padding: 8px;
    font-size: 14px;
  }

  #pcf-search,
  #pcf-state,
  #pcf-district,
  #pcf-post-office,
  #pcf-directory-state,
  #pcf-directory-district,
  .pcf-container button {
    font-size: 14px;
  }

  .pcf-container button {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 10px;
  }
}




/* New styles for State List and District List */
.pcf-state-list,
.pcf-district-list,
.pcf-post-office-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pcf-state-list li,
.pcf-district-list li,
.pcf-post-office-list li {
  margin-bottom: 5px;
}

.pcf-state-link,
.pcf-district-link {
  text-decoration: none;
  color: #0073aa;
  font-weight: bold;
}

.pcf-state-link:hover,
.pcf-district-link:hover {
  text-decoration: underline;
}

#pcf-district-results h3,
#pcf-district-results h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

#pcf-district-results ul {
  margin-left: 20px;
}

.pcf-post-offices-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.pcf-post-offices-table th,
.pcf-post-offices-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.pcf-post-offices-table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

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

.pcf-post-offices-table tr:hover {
    background-color: #f5f5f5;
}
.pcf-state-grid,
.pcf-district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.pcf-state-button,
.pcf-district-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.pcf-state-button:hover,
.pcf-district-button:hover {
  background-color: #e0e0e0;
}

.pcf-post-office-details {
  margin-top: 20px;
}

.pcf-post-office-info {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.pcf-post-office-info th,
.pcf-post-office-info td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
}

.pcf-post-office-info th {
  background-color: #f0f0f0;
  font-weight: bold;
}

.pcf-post-office-info tr:nth-child(even) {
  background-color: #f9f9f9;
}

.pcf-post-office-info tr:hover {
  background-color: #f5f5f5;
}

.pcf-breadcrumb {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 5px;
}

.pcf-breadcrumb a {
  color: #0066cc;
  text-decoration: none;
  margin: 0 5px;
}

.pcf-breadcrumb a:hover {
  text-decoration: underline;
}

.pcf-breadcrumb span {
  color: #666;
  margin: 0 5px;
}

