/* css/support-premium.css - Ultra Premium Refinement */

.support-toolbar-wrapper {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px; /* Harmony Standard Radius */
    padding: 8px 10px 8px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.support-toolbar-wrapper:focus-within {
    background: #fff;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.toolbar-section {
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.toolbar-section:last-child {
    border-right: none;
    padding-right: 0;
}

.toolbar-search-input {
    background: transparent !important;
    border: none !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1e293b !important;
    width: 100%;
    padding: 10px 0 !important;
    box-shadow: none !important;
}

.toolbar-search-input::placeholder {
    color: #94a3b8;
    font-weight: 500;
}

.toolbar-select {
    background: transparent !important;
    border: none !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    color: #475569 !important;
    cursor: pointer;
    padding: 10px 10px !important;
    box-shadow: none !important;
    width: auto;
}

.btn-premium-action {
    background: #2563eb;
    color: white !important;
    border: none;
    border-radius: 10px;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-premium-action:hover {
    background: #1d4ed8;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Premium Stat Pill */
.premium-stat-pill {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 6px 18px 6px 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}
.premium-stat-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
}

.stat-icon-glow {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.stat-details {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.stat-value {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Empty State - Modern Sharp */
.empty-container-premium {
    padding: 5rem 2rem;
    text-align: center;
    background: radial-gradient(circle at center, rgba(255,255,255,1) 0%, rgba(248,250,252,0.5) 100%);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.02);
}

.empty-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    color: #3b82f6;
    font-size: 1.8rem;
}
