/* Tier style for plugin */
.tier-search-box {
    max-width: 820px;
    margin: 28px auto;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}
.tier-search-box h2 {
    text-align: center;
    margin-bottom: 14px;
    font-size: 22px;
    color: #222;
}
.tier-search-form {
    display:flex;
    gap:10px;
    justify-content:center;
    margin-bottom:18px;
}
.tier-search-form input[type="text"]{
    padding:10px 12px;
    border-radius:8px;
    border:1px solid #ddd;
    width:60%;
    font-size:15px;
}
.tier-search-form input[type="submit"]{
    padding:10px 18px;
    border-radius:8px;
    border:none;
    background:#3b82f6;
    color:#fff;
    cursor:pointer;
    font-weight:600;
}
.tier-table{
    width:100%;
    border-collapse:collapse;
    margin-top:8px;
}
.tier-table thead{
    background: linear-gradient(90deg,#2b6cb0,#4f46e5);
    color:#fff;
}
.tier-table th, .tier-table td{
    padding:12px 10px;
    text-align:center;
    font-size:14px;
}
.tier-table tr:nth-child(even){ background:#f7fbff; }
.tier-table tr:hover{ background:#eef6ff; transition:0.2s; }

.tier-badge{ padding:6px 12px; border-radius:20px; color:#fff; font-weight:700; display:inline-block; }
.tier-Bronze{ background:#cd7f32; }
.tier-Bronze+{ background:#b86b2d; }
.tier-Silver{ background:#c0c0c0; color:#111; }
.tier-Silver+{ background:#9aa0a6; color:#111; }
.tier-Gold{ background:#d4af37; color:#111; }
.tier-Gold+{ background:#b58f2b; color:#111; }
.tier-Platinum{ background:#e5e4e2; color:#111; }
.tier-Platinum+{ background:#cfcfcf; color:#111; }
.tier-Diamond{ background:#6bb9f0; }
.tier-Diamond+{ background:#4fa7e0; }
.tier-Elite{ background:#8e44ad; }
.tier-Elite+{ background:#6f2a90; }
.tier-Royal{ background:#2c3e50; }
.tier-Regal{ background:#34495e; }

.no-records{ text-align:center; padding:14px; color:#555; }
