/* Funpay worker panel overrides */
html, body, * {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

.form-textarea {
    width: 100%;
    min-height: 140px;
    padding: 14px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.04);
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.45;
    resize: vertical;
    outline: none;
}
.form-textarea:focus {
    border-color: rgba(10, 132, 255, 0.45);
}

.form-btn-primary {
    background: linear-gradient(180deg, #2A93FF 0%, #0A84FF 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(10, 132, 255, 0.28);
}

.activity-section {
    margin-top: 8px;
    padding-top: 4px;
}
.activity-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 650;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.activity-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 240px;
    overflow-y: auto;
    padding-left: 4px;
}
.activity-item {
    position: relative;
    padding: 0 0 16px 18px;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.activity-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}
.activity-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 4px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0A84FF;
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
}
.activity-item.is-warn::before { background: #ff9f0a; box-shadow: 0 0 0 3px rgba(255,159,10,0.2); }
.activity-item.is-danger::before { background: #ff453a; box-shadow: 0 0 0 3px rgba(255,69,58,0.2); }
.activity-item.is-ok::before { background: #30d158; box-shadow: 0 0 0 3px rgba(48,209,88,0.2); }

.activity-item__text {
    font-size: 14px;
    line-height: 1.35;
    color: var(--text-color);
    font-weight: 500;
}
.activity-item__time {
    margin-top: 4px;
    font-size: 11px;
    color: var(--text-tertiary);
}
.activity-empty {
    font-size: 13px;
    color: var(--text-tertiary);
    padding: 8px 0;
}

.access-gate {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050508;
    padding: 24px;
}
.access-gate.hidden { display: none !important; }
.access-gate__card {
    text-align: center;
    max-width: 280px;
}
.access-gate__card h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.access-gate__card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.badge-danger {
    color: #ff6b7a;
    background: var(--danger-soft);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}
.badge-success {
    color: #30d158;
    background: var(--success-soft);
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}

.form-input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    background: rgba(255,255,255,0.04);
    color: #fff;
    font-size: 15px;
    outline: none;
    margin-top: 6px;
    font-family: inherit;
}
.form-input:focus { border-color: rgba(10,132,255,0.45); }
.wp-stats { margin-bottom: 16px; }
.wp-tools { margin-top: 4px; }
#inputFields { margin: 8px 0 16px; }
#inputFields .form-label { margin-top: 10px; display: block; }
.form-label-text { font-size: 13px; color: var(--text-secondary); }

