.gxph-portal {
    max-width: 1100px;
    margin: 0 auto;
    font-family: inherit;
}
.gxph-project-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px;
    margin: 24px 0;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}
.gxph-project-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 18px;
    margin-bottom: 18px;
}
.gxph-project-header h3 {
    margin: 0 0 6px;
}
.gxph-progress {
    min-width: 110px;
    height: 110px;
    border-radius: 999px;
    border: 8px solid #dbeafe;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #1d4ed8;
    background: #eff6ff;
}
.gxph-progress span {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}
.gxph-progress small {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.gxph-client-checklist {
    display: grid;
    gap: 14px;
}
.gxph-client-item {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #f9fafb;
}
.gxph-client-item h4 {
    margin: 0 0 8px;
}
.gxph-client-item p {
    margin: 6px 0;
}
.gxph-client-item-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
.gxph-client-item-side textarea {
    width: 100%;
    min-height: 90px;
    margin: 8px 0;
}
.gxph-badge {
    display: inline-block;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 700;
    background: #eef2ff;
    color: #1e3a8a;
}
.gxph-status-pending {
    background: #fef3c7;
    color: #92400e;
}
.gxph-status-in_progress {
    background: #dbeafe;
    color: #1e40af;
}
.gxph-status-submitted {
    background: #ccfbf1;
    color: #115e59;
}
.gxph-status-approved {
    background: #dcfce7;
    color: #166534;
}
.gxph-status-needs_revision {
    background: #fee2e2;
    color: #991b1b;
}
.gxph-status-not_applicable {
    background: #f3f4f6;
    color: #374151;
}
.gxph-required,
.gxph-optional {
    display: inline-block;
    margin-left: 6px;
    border-radius: 999px;
    font-size: 11px;
    padding: 2px 8px;
    vertical-align: middle;
}
.gxph-required {
    background: #fee2e2;
    color: #991b1b;
}
.gxph-optional {
    background: #e5e7eb;
    color: #374151;
}
.gxph-button {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    background: #2563eb;
    color: #fff !important;
    text-decoration: none !important;
    border: 0;
    cursor: pointer;
    font-weight: 700;
}
.gxph-button:hover {
    opacity: 0.92;
}
.gxph-button-secondary {
    background: #0f766e;
}
.gxph-button-large {
    padding: 14px 20px;
    font-size: 16px;
}
.gxph-submit-package {
    margin-top: 22px;
    text-align: right;
}
.gxph-alert {
    border-left: 4px solid #16a34a;
    background: #f0fdf4;
    color: #166534;
    padding: 12px 14px;
    margin: 18px 0;
}
.gxph-admin-note {
    background: #fff7ed;
    border-left: 3px solid #fb923c;
    padding: 8px 10px;
}
.gxph-client-note {
    background: #eff6ff;
    border-left: 3px solid #60a5fa;
    padding: 8px 10px;
}
@media (max-width: 820px) {
    .gxph-project-header,
    .gxph-client-item {
        display: block;
    }
    .gxph-progress {
        margin-top: 16px;
    }
    .gxph-client-item-side {
        margin-top: 12px;
    }
}
