.eab-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eab-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.eab-input,
.eab-select {
    height: 38px;
    padding: 0 12px;
    border: 1.5px solid #E8E4DC;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #2D2D2D;
    background: #fff;
    outline: none;
    transition: border-color 0.15s;
}

.eab-input { min-width: 200px; }
.eab-select { cursor: pointer; }
.eab-input:focus,
.eab-select:focus { border-color: #2C5F6F; }

.eab-btn--ghost {
    height: 38px;
    padding: 0 16px;
    background: none;
    border: 1.5px solid #E8E4DC;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #7A7A7A;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}
.eab-btn--ghost:hover { border-color: #2C5F6F; color: #2C5F6F; }

.eab-table-wrap {
    overflow-x: auto;
    border: 1px solid #E8E4DC;
    border-radius: 10px;
}

.eab-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
}

.eab-table thead {
    background: #FAF8F3;
    border-bottom: 1px solid #E8E4DC;
}

.eab-table th {
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    color: #7A7A7A;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.eab-th--img { width: 48px; }

.eab-table td {
    padding: 10px 14px;
    color: #2D2D2D;
    border-bottom: 1px solid #F0EDE6;
    vertical-align: middle;
}

.eab-table tbody tr:last-child td { border-bottom: none; }
.eab-table tbody tr:hover td { background: #FAF8F3; }

.eab-logo {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
}

.eab-logo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #F0EDE6;
    display: block;
}

.eab-brand-title { font-weight: 600; color: #2D2D2D; }
.eab-brand-tagline { font-size: 12px; color: #7A7A7A; margin-top: 2px; }

.eab-status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.eab-status--publish { background: #f0fdf4; color: #166534; }
.eab-status--pending { background: #fffbeb; color: #92400e; }
.eab-status--draft   { background: #F0EDE6; color: #7A7A7A; }

.eab-actions-cell { display: flex; align-items: center; gap: 8px; }

.eab-edit-btn {
    display: inline-flex;
    align-items: center;
    padding: 5px 14px;
    border: 1.5px solid #E8E4DC;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #2C5F6F;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
    white-space: nowrap;
}
.eab-edit-btn:hover { border-color: #2C5F6F; background: #f0f7f9; }

.eab-approve-btn,
.eab-reject-btn {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 0 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1.5px solid;
    transition: background 0.15s, opacity 0.15s;
    white-space: nowrap;
}
.eab-approve-btn { background: #f0fdf4; color: #166534; border-color: #bbf7d0; }
.eab-approve-btn:hover { background: #dcfce7; }
.eab-reject-btn  { background: #fef2f2; color: #dc2626; border-color: #fecaca; }
.eab-reject-btn:hover  { background: #fee2e2; }
.eab-approve-btn:disabled,
.eab-reject-btn:disabled { opacity: .4; cursor: not-allowed; }

.eab-archive-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border: 1.5px solid #fecaca;
    border-radius: 8px;
    background: #fff;
    color: #dc2626;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}
.eab-archive-btn:hover { background: #fef2f2; border-color: #dc2626; }
.eab-archive-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.eab-loading-row td,
.eab-empty-row td { text-align: center; padding: 40px; color: #7A7A7A; }

.eab-loading { display: inline-block; font-size: 16px; color: #7A7A7A; }

.eab-pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.eab-page-btn {
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border: 1.5px solid #E8E4DC;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-family: inherit;
    color: #2D2D2D;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}
.eab-page-btn:hover:not(:disabled) { border-color: #2C5F6F; }
.eab-page-btn--active { background: #2C5F6F; color: #fff; border-color: #2C5F6F; }
.eab-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.eab-page-info { font-size: 12px; color: #7A7A7A; margin-left: 6px; }
