/* ===== My Permits Table ===== */
.pwm-table-wrapper {
    margin: 40px auto;
    max-width: 900px;
}

.pwm-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.pwm-table thead {
    background: #f5f5f5;
}

.pwm-table th,
.pwm-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.pwm-table th {
    font-weight: 600;
    color: #333;
}

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

/* ===== Status Badges ===== */
.pwm-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.pwm-status-applied {
    background: #fff3cd;
    color: #856404;
}

.pwm-status-completed {
    background: #d4edda;
    color: #155724;
}

/* ===== Download Button ===== */
.pwm-download {
    display: inline-block;
    padding: 8px 14px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
}

.pwm-download:hover {
    background: #222;
}