/* --- Admin Panel 特屬樣式 --- */
.icon-btn.gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: white !important;
    border: none !important;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    margin-right: 8px;
}

.icon-btn.gold:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.wide-modal {
    max-width: 850px !important;
    width: 95% !important;
}

.admin-table-container {
    max-height: 50vh;
    overflow-y: auto;
    margin-top: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th,
.admin-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
}

.admin-table th {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-table tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.tier-select {
    background: #1e293b;
    color: white;
    border: 1px solid #334155;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tier-select:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}