.pdp-dashboard {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    font-family: inherit;
}

.pdp-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.pdp-tabs button {
    background: #ffffff;
    border: 1px solid #dcdcdc;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
    font-size: 14px;
}

.pdp-tabs button:hover {
    background: #f5f5f5;
}

.pdp-tabs button.active {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.pdp-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    margin-bottom: 20px;
}

.pdp-title {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.pdp-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f2f2f2;
}

.pdp-label {
    font-weight: 500;
    color: #666;
}

.pdp-value {
    font-weight: 600;
}

.pdp-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.pdp-paid {
    background: #3aa057;
}

.pdp-unpaid {
    background: #d9534f;
}

.pdp-partial {
    background: #f0ad4e;
}

.pdp-info {
    background: #5bc0de;
}

.pdp-warning {
    background: #f0ad4e;
}

.pdp-danger {
    background: #d9534f;
}

.pdp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 14px;
}

.pdp-table th {
    text-align: left;
    background: #fafafa;
    padding: 12px;
    border-bottom: 1px solid #ececec;
}

.pdp-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f2f2f2;
}

.pdp-download-btn {
    background: #000;
    color: #fff !important;
    padding: 7px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.25s;
}

.pdp-download-btn:hover {
    background: #333;
}

.pdp-no-access {
    padding: 20px;
    background: #fff3f3;
    border: 1px solid #f5c2c2;
    border-radius: 8px;
}

.pdp-loading {
    padding: 20px;
    text-align: center;
    color: #666;
}

#pdp-profile-form input[type="text"],
#pdp-profile-form input[type="tel"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

#pdp-profile-form label {
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
    display: block;
}

#pdp-profile-form button[type="submit"] {
    background: #000;
    color: #fff;
    border-radius: 6px;
    padding: 8px 18px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}
