.agents-dashboard-page .container,
.agents-dashboard-page .agents-dashboard-container,
.agents-reports-page .container,
.agents-reports-page .agents-reports-container {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
}

/* Agents shared layout */
.agents-layout {
    max-width: 1400px;
    margin: 0 auto;
    width: 95%;
    padding-top: 1rem;
}

.agents-nav {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding-bottom: 0;
}

.agents-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.1rem;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color 0.15s, border-color 0.15s;
}

.agents-nav-link:hover {
    color: #f3f4f6;
}

.agents-nav-link.active {
    color: #53fc18;
    border-bottom-color: #53fc18;
}

.agents-nav-link i {
    font-size: 0.85rem;
}

.agents-content {
    /* content area inside layout */
}

.agents-dashboard-container {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    display: grid;
    gap: 1rem;
}

.agents-demo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.15rem;
    border-radius: 16px;
    border: 1px solid rgba(83, 252, 24, 0.2);
    background:
        linear-gradient(135deg, rgba(83, 252, 24, 0.08), rgba(15, 23, 42, 0.92)),
        rgba(15, 23, 42, 0.88);
    box-shadow: 0 14px 32px rgba(2, 6, 23, 0.18);
}

.agents-demo-banner-copy {
    display: grid;
    gap: 0.35rem;
    max-width: 760px;
}

.agents-demo-banner-copy h2 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.08rem;
}

.agents-demo-banner-copy p {
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.55;
}

.agents-demo-badge,
.agents-demo-readonly-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0.28rem 0.62rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.agents-demo-badge {
    color: #bef264;
    background: rgba(83, 252, 24, 0.12);
    border: 1px solid rgba(83, 252, 24, 0.24);
}

.agents-demo-readonly-pill {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.agents-demo-banner-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.agents-demo-inline-note {
    margin: 0.55rem 0 0;
    color: #fcd34d;
    font-size: 0.8rem;
    line-height: 1.5;
}

.agents-dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.agents-dashboard-tabs {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.agents-dashboard-tab {
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.68rem 1rem;
    background: transparent;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.agents-dashboard-tab:hover {
    color: #f8fafc;
    background: rgba(30, 41, 59, 0.72);
}

.agents-dashboard-tab.is-active {
    color: #bef264;
    background: rgba(83, 252, 24, 0.12);
    border-color: rgba(83, 252, 24, 0.2);
}

.agents-dashboard-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.agents-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.agents-status-message {
    min-height: 1.25rem;
    color: #d1d5db;
    font-size: 0.95rem;
}

.agents-status-message.is-success {
    color: #4ade80;
}

.agents-status-message.is-error {
    color: #f87171;
}

.agents-last-updated {
    color: #94a3b8;
    font-size: 0.85rem;
}

.agents-dashboard-panels {
    display: grid;
}

.agents-dashboard-panel {
    display: grid;
    gap: 1.5rem;
}

.agents-dashboard-panel[hidden] {
    display: none !important;
}

.agents-quota-section,
.agents-package-section,
.agents-watchlist-section {
    background: rgba(16, 20, 28, 0.95);
    border: 1px solid rgba(83, 252, 24, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
}

.agents-quota-section h2,
.agents-package-section h2,
.agents-watchlist-section h2 {
    margin: 0;
    color: #f3f4f6;
}

.agents-section-subtitle {
    margin: 0.5rem 0 0;
    color: #9ca3af;
}

.agents-quota-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    gap: 0.8rem;
}

.agents-quota-card {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 12px;
    padding: 0.85rem;
    background: rgba(2, 6, 23, 0.4);
}

.agents-quota-card h3 {
    margin: 0;
    color: #d1d5db;
    font-size: 0.92rem;
}

.agents-quota-main {
    margin: 0.6rem 0 0;
    color: #53fc18;
    font-size: 1.35rem;
    font-weight: 700;
}

.agents-quota-remaining {
    margin: 0.25rem 0 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.agents-package-section.is-inactive {
    border-color: rgba(248, 113, 113, 0.16);
}

.agents-package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.agents-package-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(83, 252, 24, 0.14);
    border: 1px solid rgba(83, 252, 24, 0.2);
    color: #bef264;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.agents-package-section.is-inactive .agents-package-status {
    background: rgba(248, 113, 113, 0.12);
    border-color: rgba(248, 113, 113, 0.2);
    color: #fecaca;
}

.agents-package-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.8rem;
}

.agents-package-card,
.agents-package-rule {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.38);
    padding: 0.9rem;
}

.agents-package-card h3 {
    margin: 0;
    color: #d1d5db;
    font-size: 0.9rem;
}

.agents-package-main {
    margin: 0.55rem 0 0;
    color: #53fc18;
    font-size: 1.35rem;
    font-weight: 700;
}

.agents-package-subvalue {
    margin: 0.28rem 0 0;
    color: #94a3b8;
    font-size: 0.78rem;
}

.agents-package-rules {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.8rem;
}

.agents-package-rule {
    display: grid;
    gap: 0.35rem;
}

.agents-package-rule strong {
    color: #f8fafc;
    font-size: 1rem;
}

.agents-package-rule p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.82rem;
    line-height: 1.5;
}

.agents-package-rule-label {
    color: #9ca3af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agents-package-rule-wide {
    grid-column: 1 / -1;
}

.agents-package-summary {
    margin: 1rem 0 0;
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.6;
}

.agents-watchlist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.agents-counter-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(83, 252, 24, 0.15);
    border: 1px solid rgba(83, 252, 24, 0.25);
    color: #bef264;
    font-size: 0.85rem;
}

.agents-watchlist-form {
    margin-top: 1rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    padding-top: 1rem;
}

.agents-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 0.75rem;
}

.agents-form-grid label {
    display: grid;
    gap: 0.35rem;
    color: #d1d5db;
    font-size: 0.85rem;
}

.agents-form-grid input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    padding: 0.6rem 0.7rem;
}

.agents-form-grid input:focus {
    outline: none;
    border-color: rgba(83, 252, 24, 0.7);
    box-shadow: 0 0 0 2px rgba(83, 252, 24, 0.2);
}

.agents-form-hint {
    margin: 0.5rem 0 0.9rem;
    color: #9ca3af;
    font-size: 0.82rem;
}

.agents-btn {
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    font-weight: 600;
    cursor: pointer;
    background: rgba(30, 41, 59, 0.75);
    color: #f8fafc;
    font-size: 0.88rem;
    transition: background 0.15s, border-color 0.15s;
}

.agents-btn:hover:not(:disabled) {
    background: rgba(51, 65, 85, 0.85);
    border-color: rgba(148, 163, 184, 0.55);
}

.agents-btn-primary {
    background: #53fc18;
    color: #0f172a;
}

.agents-btn-secondary {
    background: rgba(30, 41, 59, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #f8fafc;
}


.agents-watchlist-table-wrap {
    margin-top: 1rem;
    overflow-x: auto;
}

.agents-groups-section {
    margin-top: 0;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 18px;
    padding: 1.25rem;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
}

.agents-groups-header {
    gap: 1rem;
}

.agents-group-form {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.agents-group-form-field {
    display: grid;
    gap: 0.35rem;
    min-width: 240px;
    color: #d1d5db;
    font-size: 0.85rem;
}

.agents-group-form-field input {
    width: 100%;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.8);
    color: #f8fafc;
    padding: 0.6rem 0.7rem;
}

.agents-group-form-field input:focus {
    outline: none;
    border-color: rgba(83, 252, 24, 0.7);
    box-shadow: 0 0 0 2px rgba(83, 252, 24, 0.18);
}

.agents-groups-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 1rem;
    align-items: flex-start;
}

.agents-groups-library-panel,
.agents-groups-board-panel {
    background: rgba(2, 6, 23, 0.3);
    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 16px;
    padding: 1rem;
    min-height: 280px;
}

.agents-groups-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.agents-groups-panel-head h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 1rem;
}

.agents-group-library-toolbar {
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
}

.agents-group-library-search {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0 0.7rem;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.72);
}

.agents-group-library-search i {
    color: #64748b;
    font-size: 0.82rem;
}

.agents-group-library-search input {
    width: 100%;
    min-width: 0;
    border: none;
    background: transparent;
    color: #f8fafc;
    padding: 0.62rem 0;
    font-size: 0.85rem;
}

.agents-group-library-search input::placeholder {
    color: #64748b;
}

.agents-group-library-search input:focus {
    outline: none;
}

.agents-group-library-search:focus-within {
    border-color: rgba(83, 252, 24, 0.45);
    box-shadow: 0 0 0 2px rgba(83, 252, 24, 0.12);
}

.agents-group-library-search input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.agents-group-library-page-size-wrap {
    flex: 0 0 auto;
    display: grid;
    gap: 0.22rem;
    color: #94a3b8;
    font-size: 0.72rem;
}

.agents-group-library-page-size-wrap span {
    line-height: 1.2;
}

.agents-group-library-page-size-wrap select {
    min-width: 78px;
    height: 100%;
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.72);
    color: #f8fafc;
    padding: 0.62rem 2rem 0.62rem 0.72rem;
    font-size: 0.82rem;
}

.agents-group-library-page-size-wrap select:focus {
    outline: none;
    border-color: rgba(83, 252, 24, 0.45);
    box-shadow: 0 0 0 2px rgba(83, 252, 24, 0.12);
}

.agents-group-library-page-size-wrap select:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.agents-group-library {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 0.55rem;
}

.agents-group-library-item,
.agents-group-chip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    background: rgba(15, 23, 42, 0.82);
    cursor: grab;
}

.agents-demo-mode .agents-group-library-item,
.agents-demo-mode .agents-group-chip {
    cursor: default;
}

.agents-group-library-item:active,
.agents-group-chip:active {
    cursor: grabbing;
}

.agents-group-library-item {
    display: grid;
    align-items: start;
    gap: 0.45rem;
    padding: 0.62rem 0.68rem;
    border-radius: 12px;
}

.agents-group-library-main,
.agents-group-chip-main {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.agents-group-library-main strong,
.agents-group-chip-main strong {
    color: #f8fafc;
    font-size: 0.92rem;
}

.agents-group-library-main strong {
    font-size: 0.84rem;
    line-height: 1.3;
    word-break: break-word;
}

.agents-group-library-main span,
.agents-group-chip-main span {
    color: #94a3b8;
    font-size: 0.8rem;
}

.agents-group-library-main span {
    font-size: 0.74rem;
}

.agents-group-library-meta {
    display: grid;
    gap: 0.28rem;
    justify-items: start;
}

.agents-group-library-id {
    color: #94a3b8;
    font-size: 0.7rem;
    line-height: 1.2;
}

.agents-group-library-count {
    color: #bef264;
    font-size: 0.72rem;
    white-space: nowrap;
}

.agents-group-library-item .agents-tag-list {
    gap: 0.25rem;
}

.agents-group-library-item .agents-tag {
    padding: 0.14rem 0.38rem;
    font-size: 0.67rem;
}

.agents-group-library-pagination {
    display: none;
    margin-top: 0.8rem;
    gap: 0.55rem;
}

.agents-group-library-pagination.is-visible {
    display: grid;
}

.agents-group-library-pagination-meta {
    color: #94a3b8;
    font-size: 0.74rem;
}

.agents-group-library-pagination-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.agents-group-library-page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 0.55rem;
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.72);
    color: #e5e7eb;
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 600;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.agents-group-library-page-btn:hover:not(:disabled) {
    border-color: rgba(83, 252, 24, 0.35);
    background: rgba(83, 252, 24, 0.08);
}

.agents-group-library-page-btn.is-active {
    border-color: rgba(83, 252, 24, 0.4);
    background: rgba(83, 252, 24, 0.14);
    color: #bef264;
}

.agents-group-library-page-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.agents-group-library-page-ellipsis {
    color: #64748b;
    font-size: 0.85rem;
    padding: 0 0.15rem;
}

.agents-groups-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.agents-group-card {
    display: grid;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid rgba(83, 252, 24, 0.12);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.82));
}

.agents-group-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.agents-group-card-head h4 {
    margin: 0;
    color: #f8fafc;
    font-size: 1rem;
}

.agents-group-card-head p {
    margin: 0.2rem 0 0;
    color: #94a3b8;
    font-size: 0.8rem;
}

.agents-group-dropzone {
    min-height: 160px;
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding: 0.85rem;
    border-radius: 14px;
    border: 1px dashed rgba(148, 163, 184, 0.24);
    background: rgba(2, 6, 23, 0.32);
    transition: border-color 0.15s ease, background 0.15s ease;
}

.agents-group-dropzone.is-drag-over {
    border-color: rgba(83, 252, 24, 0.8);
    background: rgba(83, 252, 24, 0.08);
}

.agents-group-drop-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: #94a3b8;
    font-size: 0.84rem;
    text-align: center;
}

.agents-group-chip {
    gap: 0.5rem;
}

.agents-group-chip-remove,
.agents-search-clear {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(248, 113, 113, 0.3);
    background: rgba(239, 68, 68, 0.14);
    color: #fecaca;
    cursor: pointer;
    flex: 0 0 auto;
}

.agents-group-chip-remove:disabled,
.agents-search-clear:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.agents-watchlist-table {
    width: 100%;
    border-collapse: collapse;
}

.agents-watchlist-table th,
.agents-watchlist-table td {
    text-align: left;
    padding: 0.65rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    color: #e5e7eb;
    font-size: 0.9rem;
}

.agents-watchlist-table th {
    color: #9ca3af;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.agents-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.agents-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.2rem 0.5rem;
    background: rgba(83, 252, 24, 0.15);
    border: 1px solid rgba(83, 252, 24, 0.2);
    color: #bef264;
    font-size: 0.75rem;
}

.agents-remove-btn {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
    padding: 0.35rem 0.55rem;
    border-radius: 8px;
    cursor: pointer;
}

.agents-remove-btn:disabled,
.agents-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.agents-empty-state {
    display: none;
    text-align: center;
    color: #94a3b8;
    padding: 1.25rem 0.5rem;
}

.agents-empty-state i {
    color: #64748b;
    margin-bottom: 0.4rem;
    display: block;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .agents-demo-banner,
    .agents-dashboard-toolbar,
    .agents-status-row,
    .agents-package-header,
    .agents-watchlist-header,
    .agents-group-form {
        flex-direction: column;
        align-items: flex-start;
    }

    .agents-dashboard-tabs {
        width: 100%;
    }

    .agents-dashboard-tab {
        flex: 1 1 0;
        text-align: center;
    }

    .agents-dashboard-toolbar-actions {
        width: 100%;
    }

    .agents-groups-layout {
        grid-template-columns: 1fr;
    }

    .agents-watchlist-table th,
    .agents-watchlist-table td {
        font-size: 0.82rem;
    }

    .agents-group-library {
        grid-template-columns: 1fr;
    }

    .agents-group-library-toolbar {
        flex-direction: column;
    }

}

/* Streamer search autocomplete */
.agents-search-wrap {
    position: relative;
}

.agents-search-results {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    max-height: 280px;
    overflow-y: auto;
    background: rgba(15, 23, 42, 0.97);
    border: 1px solid rgba(83, 252, 24, 0.3);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.agents-search-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
    transition: background 0.15s;
}

.agents-search-item:hover {
    background: rgba(83, 252, 24, 0.1);
}

.agents-search-item img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.agents-search-item-info {
    flex: 1;
    min-width: 0;
}

.agents-search-item-slug {
    font-weight: 600;
    color: #f8fafc;
    font-size: 0.9rem;
}

.agents-search-item-id {
    color: #94a3b8;
    font-size: 0.75rem;
}

.agents-search-no-results {
    padding: 0.75rem;
    color: #94a3b8;
    font-size: 0.85rem;
    text-align: center;
}

.agents-search-selected {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding: 0.35rem 0.6rem;
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.25);
    border-radius: 8px;
    font-size: 0.85rem;
    color: #bef264;
}

.agents-search-selected img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.agents-search-clear {
    margin-left: auto;
    background: none;
    border: none;
    color: #f87171;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.2rem 0.4rem;
}
