/**
 * Bizzeee Feedback - Public Styles
 */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

.bzf-landing-page {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--bzf-text);
    background-color: var(--bzf-background);
    min-height: 100vh;
}

.bzf-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CSS Variables – Themes */
:root {
    --bzf-primary: #3b82f6;
    --bzf-primary-hover: #2563eb;
    --bzf-text: #1f2937;
    --bzf-text-muted: #6b7280;
    --bzf-background: #f9fafb;
    --bzf-card-bg: #ffffff;
    --bzf-border: #e5e7eb;
    --bzf-star: #fbbf24;
    --bzf-success: #10b981;
}

/* Header */
.bzf-header {
    background: var(--bzf-card-bg);
    padding: 20px 0;
    border-bottom: 1px solid var(--bzf-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.bzf-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.bzf-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.bzf-header-text {
    flex: 1;
}

.bzf-company-name {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bzf-text);
}

.bzf-tagline {
    margin: 4px 0 0;
    color: var(--bzf-text-muted);
    font-size: 0.9rem;
}

/* Social Icons */
.bzf-social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.bzf-header .bzf-social-icons {
    margin-top: 0;
}

.bzf-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bzf-background);
    color: var(--bzf-text-muted);
    transition: all 0.2s ease;
    text-decoration: none;
}

.bzf-social-icon svg {
    width: 18px;
    height: 18px;
}

.bzf-social-icon:hover {
    background: var(--bzf-primary);
    color: white;
    transform: scale(1.1);
}

.bzf-social-facebook:hover { background: #1877f2; }
.bzf-social-instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.bzf-social-twitter:hover { background: #000000; }
.bzf-social-linkedin:hover { background: #0a66c2; }
.bzf-social-youtube:hover { background: #ff0000; }
.bzf-social-tiktok:hover { background: #000000; }

/* Hero Section */
.bzf-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bzf-card-bg) 0%, var(--bzf-background) 100%);
}

.bzf-hero-title {
    margin: 0 0 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bzf-text);
}

.bzf-hero-subtitle {
    margin: 0 0 40px;
    color: var(--bzf-text-muted);
    font-size: 1.1rem;
}

/* Rating Selector */
.bzf-rating-selector {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bzf-star {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform 0.2s ease;
}

.bzf-star svg {
    width: 48px;
    height: 48px;
    fill: var(--bzf-border);
    transition: fill 0.2s ease;
}

.bzf-star:hover svg,
.bzf-star.active svg {
    fill: var(--bzf-star);
}

.bzf-star:hover {
    transform: scale(1.15);
}

.bzf-rating-text {
    margin: 20px 0 0;
    color: var(--bzf-text-muted);
    font-size: 0.95rem;
}

/* Cards */
.bzf-card {
    background: var(--bzf-card-bg);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.bzf-card h3 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    color: var(--bzf-text);
}

/* Feedback Section */
.bzf-feedback-section {
    padding: 0 0 40px;
}

.bzf-feedback-card {
    text-align: center;
}

.bzf-positive-feedback h3,
.bzf-negative-feedback h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.bzf-positive-feedback p,
.bzf-negative-feedback p {
    color: var(--bzf-text-muted);
    margin-bottom: 24px;
}

/* Review Platforms */
.bzf-review-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.bzf-platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bzf-platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: white;
    color: inherit;
    font-weight: 700;
    font-size: 14px;
}

.bzf-platform-google { background: #4285f4; color: white; }
.bzf-platform-google:hover { background: #3367d6; }
.bzf-platform-tripadvisor { background: #00aa6c; color: white; }
.bzf-platform-tripadvisor:hover { background: #008c59; }
.bzf-platform-yelp { background: #d32323; color: white; }
.bzf-platform-yelp:hover { background: #b91c1c; }
.bzf-platform-custom { background: var(--bzf-primary); color: white; }
.bzf-platform-custom:hover { background: var(--bzf-primary-hover); }

/* Bonus Box */
.bzf-bonus-box {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 12px;
    text-align: left;
    margin: 24px 0;
}

.bzf-bonus-icon { font-size: 2rem; flex-shrink: 0; }
.bzf-bonus-content { color: #92400e; }
.bzf-bonus-content p { margin: 0; color: inherit; }

/* Divider */
.bzf-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.bzf-divider::before,
.bzf-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--bzf-border);
}

.bzf-divider span {
    padding: 0 16px;
    color: var(--bzf-text-muted);
    font-size: 0.9rem;
}

/* Buttons */
.bzf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.bzf-btn-primary { background: var(--bzf-primary); color: white; }
.bzf-btn-primary:hover { background: var(--bzf-primary-hover); transform: translateY(-2px); }
.bzf-btn-secondary { background: var(--bzf-background); color: var(--bzf-text); border: 1px solid var(--bzf-border); }
.bzf-btn-secondary:hover { background: var(--bzf-border); }
.bzf-btn-full { width: 100%; }

/* Feedback Form */
.bzf-feedback-form { text-align: left; }

.bzf-form-group { margin-bottom: 20px; }
.bzf-form-group label { display: block; margin-bottom: 8px; font-weight: 500; color: var(--bzf-text); }

.bzf-form-group input,
.bzf-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--bzf-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.bzf-form-group input:focus,
.bzf-form-group textarea:focus {
    outline: none;
    border-color: var(--bzf-primary);
}

.bzf-form-group textarea { resize: vertical; min-height: 100px; }

.bzf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Success Message */
.bzf-success-message { padding: 40px; }

.bzf-success-icon {
    width: 80px;
    height: 80px;
    background: var(--bzf-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.bzf-success-message h3 { font-size: 1.5rem; margin-bottom: 8px; }
.bzf-success-message p { color: var(--bzf-text-muted); margin: 0; }

/* About Section */
.bzf-about-section { padding: 40px 0; }
.bzf-description { color: var(--bzf-text); line-height: 1.7; }
.bzf-description p { margin: 0 0 16px; }
.bzf-description p:last-child { margin-bottom: 0; }

/* Contact Section */
.bzf-contact-section { padding: 0 0 40px; }

.bzf-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.bzf-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.bzf-contact-btn svg { width: 20px; height: 20px; }

.bzf-btn-whatsapp { background: #25d366; color: white; }
.bzf-btn-whatsapp:hover { background: #128c7e; }
.bzf-btn-phone { background: var(--bzf-primary); color: white; }
.bzf-btn-phone:hover { background: var(--bzf-primary-hover); }
.bzf-btn-email { background: var(--bzf-text); color: white; }
.bzf-btn-email:hover { background: #374151; }

.bzf-address { display: flex; align-items: flex-start; gap: 12px; color: var(--bzf-text-muted); margin-top: 16px; }
.bzf-address svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }

.bzf-website { margin-top: 12px; }
.bzf-website a { display: inline-flex; align-items: center; gap: 8px; color: var(--bzf-primary); text-decoration: none; }
.bzf-website a:hover { text-decoration: underline; }
.bzf-website svg { width: 18px; height: 18px; }

/* Footer */
.bzf-footer { padding: 30px 0; text-align: center; border-top: 1px solid var(--bzf-border); margin-top: 40px; }
.bzf-footer p { margin: 0 0 12px; color: var(--bzf-text-muted); font-size: 0.9rem; }
.bzf-footer .bzf-social-icons { justify-content: center; }

/* Floating WhatsApp */
.bzf-floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.bzf-floating-whatsapp svg { width: 32px; height: 32px; }
.bzf-floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5); }

/* Responsive */
@media (max-width: 640px) {
    .bzf-header-content { flex-direction: column; text-align: center; }
    .bzf-logo { width: 80px; height: 80px; }
    .bzf-hero-title { font-size: 1.5rem; }
    .bzf-star svg { width: 40px; height: 40px; }
    .bzf-card { padding: 24px; }
    .bzf-form-row { grid-template-columns: 1fr; }
    .bzf-contact-buttons { flex-direction: column; }
    .bzf-contact-btn { width: 100%; justify-content: center; }
    .bzf-floating-whatsapp { bottom: 16px; right: 16px; width: 56px; height: 56px; }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bzf-fade-in { animation: fadeIn 0.3s ease forwards; }

/* Loading State */
.bzf-btn.loading { position: relative; color: transparent; }

.bzf-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================
   ALLGEMEINE SEITEN (Activate, Login, 404)
   ========================================== */

.bzf-page {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bzf-page .bzf-container { width: 100%; max-width: 480px; padding: 20px; }

.bzf-card-center { text-align: center; }

.bzf-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.bzf-logo-placeholder .bzf-icon { font-size: 2.5rem; }

.bzf-page h1 { margin: 0 0 12px; font-size: 1.75rem; font-weight: 700; color: #1f2937; }
.bzf-subtitle { color: #6b7280; margin: 0 0 32px; }

/* Form Styles */
.bzf-page .bzf-form-group { margin-bottom: 20px; text-align: left; }
.bzf-page .bzf-form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #374151; }

.bzf-page .bzf-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.bzf-page .bzf-form-group input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bzf-page .bzf-form-group small { display: block; margin-top: 6px; color: #9ca3af; font-size: 0.85rem; }

.bzf-btn-large { padding: 16px 32px; font-size: 1.1rem; width: 100%; }
.bzf-btn-outline { background: transparent; color: #6b7280; border: 1px solid #d1d5db; }
.bzf-btn-outline:hover { background: #f3f4f6; color: #374151; }

.bzf-login-link { margin-top: 24px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.bzf-login-link p { margin: 0; color: #6b7280; }
.bzf-login-link a { color: #3b82f6; text-decoration: none; font-weight: 600; }
.bzf-login-link a:hover { text-decoration: underline; }

/* Code Display */
.bzf-code-display { background: #f3f4f6; padding: 16px 24px; border-radius: 12px; margin-bottom: 24px; }
.bzf-code-display span { display: block; color: #6b7280; font-size: 0.85rem; margin-bottom: 4px; }
.bzf-code-display strong { display: block; font-size: 1.5rem; font-family: monospace; color: #1f2937; letter-spacing: 2px; }

/* Info Text */
.bzf-info-text { margin-top: 24px; padding-top: 24px; border-top: 1px solid #e5e7eb; text-align: left; }
.bzf-info-text p { margin: 0; font-size: 0.9rem; color: #6b7280; }

/* Links */
.bzf-links { margin-top: 24px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.bzf-links a { color: #3b82f6; text-decoration: none; font-size: 0.9rem; }
.bzf-links a:hover { text-decoration: underline; }

/* Form Message */
.bzf-form .bzf-message,
.bzf-message { margin-top: 16px; padding: 12px; border-radius: 8px; font-size: 0.9rem; display: none; }
.bzf-message.error { display: block; background: #fef2f2; color: #dc2626; }
.bzf-message.success { display: block; background: #f0fdf4; color: #16a34a; }

/* Error */
.bzf-error { background: #fef2f2; color: #dc2626; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }

/* 404 Page */
.bzf-404-page .bzf-logo-placeholder { background: linear-gradient(135deg, #f87171 0%, #dc2626 100%); }
.bzf-inactive-page .bzf-logo-placeholder { background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%); }

/* ==========================================
   DASHBOARD
   ========================================== */

.bzf-page.bzf-dashboard-page {
    display: block !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    background: #f3f4f6;
    min-height: 100vh;
}

.bzf-dashboard-page .bzf-container { max-width: 1000px !important; width: 100% !important; }

.bzf-dashboard-header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.bzf-dashboard-header .bzf-container { max-width: 1000px; }

.bzf-dashboard-header .bzf-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bzf-dashboard-header h1 { margin: 0; font-size: 1.5rem; }
.bzf-header-actions { display: flex; gap: 12px; }

.bzf-dashboard-content { max-width: 1000px; padding: 30px 20px; padding-bottom: 100px !important; }

/* Stats Row */
.bzf-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }

.bzf-stat-box {
    background: white;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.bzf-stat-number { display: block; font-size: 2.5rem; font-weight: 700; color: #1f2937; line-height: 1; margin-bottom: 8px; }
.bzf-stat-label { color: #6b7280; font-size: 0.9rem; }
.bzf-stat-positive .bzf-stat-number { color: #10b981; }

/* URL Box */
.bzf-url-box { display: flex; gap: 12px; margin-bottom: 12px; }
.bzf-url-box input { flex: 1; padding: 12px 16px; border: 1px solid #e5e7eb; border-radius: 10px; font-size: 0.9rem; background: #f9fafb; color: #374151; }
.bzf-help-text { color: #9ca3af; font-size: 0.85rem; margin: 0; }

/* Tabs */
.bzf-tabs { display: flex; gap: 4px; background: white; padding: 6px; border-radius: 12px; margin-bottom: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); }

.bzf-tab {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: transparent;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bzf-tab:hover { color: #374151; background: #f3f4f6; }
.bzf-tab.active { background: #3b82f6; color: white; }

.bzf-tab-content { display: none; }
.bzf-tab-content.active { display: block; }

/* Dashboard Cards */
.bzf-dashboard-page .bzf-card { margin-bottom: 20px; }
.bzf-dashboard-page .bzf-card h2 { margin: 0 0 20px; font-size: 1.1rem; color: #1f2937; }
.bzf-dashboard-page .bzf-card h3 { margin: 0 0 20px; font-size: 1rem; color: #374151; padding-bottom: 12px; border-bottom: 1px solid #e5e7eb; }

/* Settings Form */
.bzf-settings-form .bzf-form-group { margin-bottom: 20px; }
.bzf-settings-form label { display: block; margin-bottom: 8px; font-weight: 500; color: #374151; }

.bzf-settings-form input[type="text"],
.bzf-settings-form input[type="url"],
.bzf-settings-form input[type="tel"],
.bzf-settings-form input[type="email"],
.bzf-settings-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.bzf-settings-form input:focus,
.bzf-settings-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.bzf-settings-form input[type="color"] { width: 60px; height: 40px; padding: 4px; border: 1px solid #e5e7eb; border-radius: 8px; cursor: pointer; }
.bzf-settings-form textarea { resize: vertical; min-height: 80px; }
.bzf-settings-form small { display: block; margin-top: 6px; color: #9ca3af; font-size: 0.85rem; }

/* Checkbox */
.bzf-checkbox { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.bzf-checkbox input { width: 20px; height: 20px; cursor: pointer; }
.bzf-checkbox span { font-weight: normal; }

/* Form Row */
.bzf-settings-form .bzf-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Platform Row */
.bzf-platform-row { display: flex; gap: 12px; margin-bottom: 12px; }
.bzf-platform-row input[type="text"] { flex: 1; }
.bzf-platform-row input[type="url"] { flex: 2; }

.bzf-btn-remove {
    width: 40px; height: 40px; border: none; background: #fee2e2; color: #dc2626;
    border-radius: 8px; font-size: 1.2rem; cursor: pointer; transition: all 0.2s ease;
}
.bzf-btn-remove:hover { background: #fecaca; }

/* Fixed Save */
.bzf-fixed-save {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff !important;
    padding: 16px 20px;
    border-top: 2px solid #d1d5db;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.bzf-fixed-save .bzf-container { display: flex; align-items: center; gap: 20px; max-width: 1000px; margin: 0 auto; }

.bzf-fixed-save .bzf-btn {
    min-width: 220px;
    background-color: #3b82f6 !important;
    color: #ffffff !important;
    padding: 14px 28px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

.bzf-fixed-save .bzf-btn:hover { background-color: #2563eb !important; transform: translateY(-1px); }

/* Dashboard Responsive */
@media (max-width: 768px) {
    .bzf-stats-row { grid-template-columns: 1fr; }
    .bzf-header-actions { flex-direction: column; gap: 8px; }
    .bzf-tabs { flex-wrap: wrap; }
    .bzf-tab { flex: 1 1 45%; }
    .bzf-settings-form .bzf-form-row { grid-template-columns: 1fr; }
    .bzf-url-box { flex-direction: column; }
    .bzf-platform-row { flex-direction: column; }
    .bzf-platform-row input { flex: none !important; }
    .bzf-btn-remove { width: 100%; }
}

/* ==========================================
   ADMIN
   ========================================== */

.bzf-admin { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }

.bzf-admin-nav {
    background: #1f2937;
    color: white;
    padding: 16px 0;
}

.bzf-admin-nav .bzf-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
}

.bzf-admin-nav h1 { margin: 0; font-size: 1.2rem; }
.bzf-admin-nav a { color: #9ca3af; text-decoration: none; font-size: 0.9rem; }
.bzf-admin-nav a:hover { color: white; }

.bzf-admin-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.bzf-admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.bzf-admin-stat {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.bzf-admin-stat .number { font-size: 2rem; font-weight: 700; color: #1f2937; }
.bzf-admin-stat .label { color: #6b7280; font-size: 0.9rem; margin-top: 4px; }

.bzf-admin table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.bzf-admin th { background: #f9fafb; padding: 12px 16px; text-align: left; font-weight: 600; color: #374151; border-bottom: 1px solid #e5e7eb; }
.bzf-admin td { padding: 12px 16px; border-bottom: 1px solid #f3f4f6; color: #4b5563; }
.bzf-admin tr:last-child td { border-bottom: none; }
.bzf-admin tr:hover td { background: #f9fafb; }

.bzf-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bzf-badge-active { background: #d1fae5; color: #065f46; }
.bzf-badge-unregistered { background: #fef3c7; color: #92400e; }
.bzf-badge-inactive { background: #fee2e2; color: #991b1b; }

.bzf-admin .bzf-btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.bzf-admin .bzf-btn-danger { background: #dc2626; color: white; }
.bzf-admin .bzf-btn-danger:hover { background: #b91c1c; }

.bzf-flash {
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    background: #d1fae5;
    color: #065f46;
    font-weight: 500;
}

.bzf-pagination {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    justify-content: center;
}

.bzf-pagination a,
.bzf-pagination span {
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
}

.bzf-pagination a { background: white; color: #374151; border: 1px solid #e5e7eb; }
.bzf-pagination a:hover { background: #f3f4f6; }
.bzf-pagination span { background: #3b82f6; color: white; }

@media (max-width: 768px) {
    .bzf-admin-stats { grid-template-columns: 1fr 1fr; }
    .bzf-admin table { font-size: 0.85rem; }
    .bzf-admin th, .bzf-admin td { padding: 8px 10px; }
}
