.wblt-wrap {
    margin: 24px 0;
    padding: 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}
.wblt-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}
.wblt-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
    color: #111827;
}
.wblt-subtitle {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 14px;
}
.wblt-search-label {
    min-width: 230px;
}
.wblt-search {
    width: 100%;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}
.wblt-search:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.wblt-table-shell {
    width: 100%;
}
.wblt-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}
.wblt-table thead th {
    text-align: left;
    font-size: 13px;
    color: #334155;
    background: #f8fafc;
    padding: 12px 12px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}
.wblt-table tbody td {
    padding: 12px;
    border-bottom: 1px solid #eef2f7;
    color: #334155;
    font-size: 14px;
    vertical-align: middle;
}
.wblt-table tbody tr:last-child td {
    border-bottom: none;
}
.wblt-table tbody tr:hover {
    background: #f9fbff;
}
.wblt-main-cell {
    width: 44%;
}
.wblt-post-title {
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.35;
}
.wblt-post-title:hover {
    color: #2563eb;
    text-decoration: underline;
}
.wblt-link-cell {
    width: 110px;
    text-align: right;
}
.wblt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 88px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}
.wblt-btn:hover {
    background: #2563eb;
}
.wblt-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1;
}
.wblt-status-open { background: #dcfce7; color: #166534; }
.wblt-status-urgent { background: #fee2e2; color: #991b1b; }
.wblt-status-warning { background: #fef3c7; color: #92400e; }
.wblt-status-soon { background: #dbeafe; color: #1e40af; }
.wblt-status-closed { background: #f1f5f9; color: #475569; }
.wblt-status-neutral { background: #ede9fe; color: #5b21b6; }
.wblt-status-manual { background: #ecfeff; color: #155e75; }
.wblt-empty {
    padding: 16px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: #475569;
}
.wblt-row-hidden {
    display: none !important;
}
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
@media (max-width: 760px) {
    .wblt-wrap {
        padding: 14px;
        border-radius: 16px;
    }
    .wblt-head {
        display: block;
    }
    .wblt-title {
        font-size: 19px;
    }
    .wblt-search-label {
        display: block;
        min-width: 0;
        margin-top: 12px;
    }
    .wblt-table,
    .wblt-table thead,
    .wblt-table tbody,
    .wblt-table th,
    .wblt-table td,
    .wblt-table tr {
        display: block;
        width: 100%;
    }
    .wblt-table {
        border: 0;
        border-radius: 0;
    }
    .wblt-table thead {
        display: none;
    }
    .wblt-table tbody tr {
        padding: 12px;
        margin-bottom: 12px;
        border: 1px solid #e5e7eb;
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    }
    .wblt-table tbody td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 9px 0;
        border: 0;
        border-bottom: 1px solid #f1f5f9;
        text-align: right;
    }
    .wblt-table tbody td:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
    .wblt-table tbody td::before {
        content: attr(data-label);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        color: #64748b;
        text-align: left;
        flex: 0 0 auto;
    }
    .wblt-main-cell {
        display: block !important;
        width: auto;
        text-align: left !important;
        padding-top: 0 !important;
    }
    .wblt-main-cell::before {
        display: block;
        margin-bottom: 6px;
    }
    .wblt-post-title {
        display: block;
        font-size: 15px;
    }
    .wblt-link-cell {
        width: auto;
    }
    .wblt-btn {
        min-width: 96px;
    }
}
