/* Main Container */
.website-opd-section {
    background-color: #fff;
    min-height: 100vh;
    padding-bottom: 5rem;
}

/* Filter Card */
.filter-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.35rem;
}

.form-control {
    border-radius: 8px;
    border-color: #d1d5db;
    padding: 0.6rem 0.9rem;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.form-control:focus {
    border-color: #1f2937;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1);
}

.btn-filter,
.btn-reset {
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-filter {
    background-color: #111827;
    color: #fff;
    border: none;
}

.btn-filter:hover {
    background-color: #1f2937;
    color: #fff;
    transform: translateY(-1px);
}

.btn-reset {
    background-color: transparent;
    color: #111827;
    border: 1px solid #d1d5db;
}

.btn-reset:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
}

/* Table Card */
.table-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.custom-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.custom-table thead th {
    background-color: #f9fafb;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.custom-table tbody tr {
    transition: background-color 0.2s;
}

.custom-table tbody tr:hover {
    background-color: #f9fafb;
}

.custom-table tbody td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid #f3f4f6;
    color: #1f2937;
    font-size: 0.95rem;
}

.custom-table tbody tr:last-child td {
    border-bottom: none;
}

/* Badges & Links */
.badge-alias {
    background-color: #f3f4f6;
    color: #374151;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    border: 1px solid #e5e7eb;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    background-color: #111827;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-visit:hover {
    background-color: #1f2937;
    color: #fff;
}

/* Pagination */
.pagination-wrapper {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: block;
}