/* Wortfilter eBay Systemstatus – Box-Styles */
.wf-ebay-status-wrap {
    margin: 1.5em 0;
}

.wf-ebay-status-box {
    border: 1px solid #d0d4d9;
    border-radius: 8px;
    padding: 18px 20px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.45;
    max-width: 780px;
}

.wf-ebay-status-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.wf-ebay-status-title {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.wf-ebay-status-title strong {
    font-size: 17px;
    color: #222;
}

.wf-ebay-status-overall {
    font-size: 13px;
    font-weight: 600;
}
.wf-ebay-status-overall.wf-ebay-state-ok   { color: #1f8a3a; }
.wf-ebay-status-overall.wf-ebay-state-warn { color: #b8860b; }
.wf-ebay-status-overall.wf-ebay-state-down { color: #c62828; }

.wf-ebay-status-refresh {
    background: #F5A623; /* wortfilter.de gelb */
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color .15s ease;
}
.wf-ebay-status-refresh:hover,
.wf-ebay-status-refresh:focus {
    background: #d98e15;
    outline: none;
}
.wf-ebay-status-refresh[disabled] {
    opacity: 0.6;
    cursor: wait;
}
.wf-ebay-status-refresh-icon {
    display: inline-block;
    font-size: 16px;
    line-height: 1;
}
.wf-ebay-status-refresh.is-loading .wf-ebay-status-refresh-icon {
    animation: wf-ebay-spin 0.8s linear infinite;
}
@keyframes wf-ebay-spin {
    to { transform: rotate(360deg); }
}

.wf-ebay-status-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.wf-ebay-status-table th,
.wf-ebay-status-table td {
    text-align: left;
    padding: 8px 10px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}
.wf-ebay-status-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #666;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}
.wf-ebay-status-table tbody tr:last-child td {
    border-bottom: none;
}

.wf-col-icon  { width: 28px; }
.wf-col-state { width: 38%; }

.wf-ebay-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #999;
}
.wf-ebay-row.wf-ebay-state-ok   .wf-ebay-dot { background: #7ED321; } /* wortfilter grün */
.wf-ebay-row.wf-ebay-state-warn .wf-ebay-dot { background: #F5A623; } /* wortfilter gelb */
.wf-ebay-row.wf-ebay-state-down .wf-ebay-dot { background: #D0021B; } /* wortfilter rot */

.wf-ebay-row.wf-ebay-state-warn td.wf-col-state { color: #8a6500; font-weight: 600; }
.wf-ebay-row.wf-ebay-state-down td.wf-col-state { color: #c62828; font-weight: 600; }
.wf-ebay-row.wf-ebay-state-ok   td.wf-col-state { color: #555; }

.wf-ebay-status-meta {
    margin: 12px 0 0 0;
    font-size: 12px;
    color: #777;
}
.wf-ebay-status-meta a {
    color: #4A90D9; /* wortfilter blau */
    text-decoration: none;
}
.wf-ebay-status-meta a:hover { text-decoration: underline; }

.wf-ebay-status-error {
    background: #fff4f4;
    border: 1px solid #f3c2c2;
    color: #b00020;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 0 0 12px 0;
    font-size: 14px;
}

.screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px; height: 1px; overflow: hidden;
}

@media (max-width: 480px) {
    .wf-ebay-status-box { padding: 14px; font-size: 14px; }
    .wf-col-state      { width: auto; }
    .wf-ebay-status-table th,
    .wf-ebay-status-table td { padding: 6px 6px; }
}
