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

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

.eao-input,
.eao-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;
}

.eao-input { min-width: 220px; }
.eao-input--date { min-width: 0; width: 150px; }
.eao-select { cursor: pointer; }
.eao-input:focus,
.eao-select:focus { border-color: #2C5F6F; }

.eao-date-sep { color: #7A7A7A; font-size: 14px; }

.eao-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;
}
.eao-btn--ghost:hover { border-color: #2C5F6F; color: #2C5F6F; }

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

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

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

.eao-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;
}

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

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

.eao-customer { font-weight: 600; }
.eao-email    { font-size: 12px; color: #7A7A7A; margin-top: 2px; }

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

.eao-status--completed  { background: #f0fdf4; color: #166534; }
.eao-status--processing { background: #edf4ff; color: #1D4ED8; }
.eao-status--pending    { background: #fffbeb; color: #92400e; }
.eao-status--on-hold    { background: #F0EDE6; color: #7A7A7A; }
.eao-status--cancelled  { background: #fef2f2; color: #991b1b; }
.eao-status--refunded   { background: #F0EDE6; color: #7A7A7A; }

.eao-view-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;
}
.eao-view-btn:hover { border-color: #2C5F6F; background: #f0f7f9; }

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

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

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

.eao-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;
}
.eao-page-btn:hover:not(:disabled) { border-color: #2C5F6F; }
.eao-page-btn--active { background: #2C5F6F; color: #fff; border-color: #2C5F6F; }
.eao-page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

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