.psm-frontend-dashboard {
    max-width: 1200px;
    margin: 30px auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    font-family: Arial, sans-serif;
}

.psm-frontend-dashboard h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 30px;
    color: #111827;
}

.psm-frontend-dashboard h3 {
    margin-top: 30px;
    margin-bottom: 14px;
    font-size: 22px;
    color: #1f2937;
}

.psm-frontend-dashboard h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #374151;
}

.psm-frontend-dashboard p {
    color: #374151;
    line-height: 1.5;
}

.psm-card {
    padding: 18px;
    margin-bottom: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.psm-balance-card {
    padding: 20px;
    margin-bottom: 24px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 14px;
}

.psm-balance-amount {
    font-size: 28px;
    font-weight: bold;
    color: #065f46;
    margin: 0;
}

.psm-alert {
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid transparent;
}

.psm-alert-success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.psm-alert-error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.psm-alert-info {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.psm-form {
    padding: 18px;
    margin-bottom: 24px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
}

.psm-form p {
    margin-bottom: 14px;
}

.psm-form label {
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #111827;
}

.psm-form input[type="text"],
.psm-form input[type="email"],
.psm-form input[type="number"],
.psm-form input[type="date"],
.psm-form input[type="file"],
.psm-form select,
.psm-form textarea {
    width: 100%;
    max-width: 420px;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
}

.psm-form textarea {
    min-height: 90px;
    resize: vertical;
}

.psm-btn,
.psm-frontend-dashboard button,
.psm-frontend-dashboard a.psm-btn {
    display: inline-block;
    padding: 10px 14px;
    border: none;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.psm-btn:hover,
.psm-frontend-dashboard button:hover,
.psm-frontend-dashboard a.psm-btn:hover {
    opacity: 0.92;
}

.psm-btn-success {
    background: #16a34a;
}

.psm-btn-danger {
    background: #dc2626;
}

.psm-btn-secondary {
    background: #6b7280;
}

.psm-table-wrap {
    overflow-x: auto;
    margin-bottom: 24px;
}

.psm-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.psm-table th {
    background: #f3f4f6;
    color: #111827;
    text-align: left;
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.psm-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #374151;
    vertical-align: top;
}

.psm-table tr:nth-child(even) {
    background: #fafafa;
}

.psm-table tr:hover {
    background: #f9fbff;
}

.psm-inline-form {
    display: inline-block;
    margin: 4px 6px 4px 0;
}

.psm-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.psm-link:hover {
    text-decoration: underline;
}

.psm-section-divider {
    margin: 28px 0;
    border: 0;
    border-top: 1px solid #e5e7eb;
}