.tprb-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}
.tprb-quick-filters {
    display: flex;
    gap: 8px;
    align-items: center;
}
.tprb-quick-btn {
    padding: 4px 10px;
    font-size: 12px;
    border: 1px solid #ddd;
    background: #f7f7f7;
    text-decoration: none;
    border-radius: 3px;
    color: #333;
}
.tprb-quick-btn:hover {
    background: #e0e0e0;
    color: #333;
}
.tprb-quick-btn.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}
.tprb-filters-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.tprb-filters-form label {
    font-size: 13px;
    white-space: nowrap;
}
.tprb-filters-form input, .tprb-filters-form select {
    font-size: 13px;
}
.tprb-postbox {max-width: 600px;}
.nav-tab-wrapper {margin-bottom: 20px;}

.tprb-alert-icon {
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-left: 5px;
            vertical-align: middle;
            cursor: pointer;
            position: relative;
            text-decoration: none;
}
.tprb-alert-icon svg {
            fill: #ff8c00;
            width: 100%;
            height: 100%;
}
.tprb-tooltip {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: #333;
            color: white;
            padding: 5px 8px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
            z-index: 1000;
}
.tprb-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 5px solid transparent;
            border-top-color: #333;
}
.tprb-alert-icon:hover .tprb-tooltip {
            opacity: 1;
            visibility: visible;
}