/* Search Form */
.pd-search-wrapper {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
}

#pd-search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#pd-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 999;
    max-height: 250px;
    overflow-y: auto;
    display: none;
}

.pd-suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.pd-suggestion-item:hover {
    background-color: #f0f0f0;
}

.pd-suggestion-item.disabled {
    color: #999;
    cursor: default;
}

/* Table Layout */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

table th,
table td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 14px;
}

table thead {
    background-color: #f8f8f8;
}

/* Responsive Table */
@media (max-width: 768px) {
    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead tr {
        display: none;
    }

    td {
        position: relative;
        padding-left: 50%;
        text-align: right;
        border: 1px solid #ddd;
    }

    td::before {
        position: absolute;
        left: 15px;
        top: 10px;
        white-space: nowrap;
        font-weight: bold;
        content: attr(data-label);
        text-align: left;
    }
}

/* Import Progress */
#pd-progress-bar {
    width: 100%;
    height: 20px;
    appearance: none;
}

#pd-import-status {
    margin-top: 10px;
    font-weight: 500;
}


.pd-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-family: Arial, sans-serif;
    font-size: 15px;
}

.pd-table th,
.pd-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.pd-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    color: #333;
}

.pd-table tr:nth-child(even) {
    background-color: #fafafa;
}

.pd-table a {
    color: #0073aa;
    text-decoration: none;
}

.pd-table a:hover {
    text-decoration: underline;
}




.pd-vertical-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: sans-serif;
    font-size: 15px;
}
.pd-vertical-table th {
    text-align: left;
    padding: 8px;
    background: #f2f2f2;
    border: 1px solid #ddd;
    width: 200px;
}
.pd-vertical-table td {
    padding: 8px;
    border: 1px solid #ddd;
}
.pd-vertical-table a {
    color: #0073aa;
    text-decoration: none;
}
.pd-vertical-table a:hover {
    text-decoration: underline;
}




.pd-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
  background: #fff;
  border: 1px solid #ddd;
}

.pd-data-table th,
.pd-data-table td {
  text-align: left;
  padding: 10px;
  border: 1px solid #ddd;
}

.pd-data-table th {
  width: 30%;
  background-color: #f5f5f5;
  font-weight: 600;
}

.pd-data-table td a {
  color: #0073aa;
  text-decoration: none;
}

.pd-data-table td a:hover {
  text-decoration: underline;
}

.pd-post-office-list hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 30px 0;
}























