:root {
    /* Color Palette - Updated to Nature & Apiary */
    --honey-yellow: rgba(250, 230, 130, 1);
    --cream-nectar: rgba(255, 250, 220, 1);
    --apiary-brown: #5d4037;
    --apiary-brown-dark: #3e2723;
    --primary-gradient: linear-gradient(135deg, var(--honey-yellow) 0%, var(--cream-nectar) 100%);
    --text-main: var(--apiary-brown-dark);
    --text-muted: #795548;
    --bg-creme: #fffdf5;
    --accent-gold: #fbbf24;

    /* Organic Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(93, 64, 55, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(93, 64, 55, 0.1);
    --glass-blur: blur(8px);

    /* Transitions */
    --transition-gentle: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-creme);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    /* Subtle Honeycomb Pattern */
    background-image:
        radial-gradient(circle at center, rgba(250, 230, 130, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Background Organic Blobs */
.bg-blob {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--honey-yellow) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    animation: float-organic 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -15%;
    left: -10%;
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    animation-delay: -7s;
}

@keyframes float-organic {
    from {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    to {
        transform: translate(80px, 40px) scale(1.15) rotate(15deg);
    }
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 245, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--apiary-brown);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

.logo::before {
    content: '🐝';
    font-size: 1.4rem;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.user-action {
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-gentle);
}

.user-action:hover {
    color: var(--apiary-brown-dark);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--apiary-brown-dark);
    cursor: pointer;
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition-gentle);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--apiary-brown-dark);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--honey-yellow);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 60px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 4.8rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--apiary-brown-dark);
}

.hero h1 span {
    color: #d97706;
    /* Deep Honey Gold */
    position: relative;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 650px;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    /* More rounded/organic */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-gentle);
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--apiary-brown);
    color: var(--cream-nectar);
    box-shadow: 0 10px 25px -10px rgba(93, 64, 55, 0.4);
}

.btn-primary:hover {
    background: var(--apiary-brown-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -10px rgba(93, 64, 55, 0.5);
}

/* Feature Cards - Simplicity & Harmony */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

.feature-card {
    padding: 3rem 2.5rem;
    border-radius: 32px;
    background: white;
    transition: var(--transition-gentle);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(93, 64, 55, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--honey-yellow);
    opacity: 0;
    transition: var(--transition-gentle);
}

.feature-card:hover {
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.08);
    border-color: rgba(250, 230, 130, 0.5);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Footer */
footer {
    padding: 6rem 5% 3rem;
    background: var(--cream-nectar);
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .nav-container {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 253, 245, 0.95);
        backdrop-filter: var(--glass-blur);
        border-bottom: 1px solid var(--glass-border);
        padding: 1.5rem 5%;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(93, 64, 55, 0.05);
    }

    .nav-container.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
        padding-top: 1rem;
        border-top: 1px solid var(--glass-border);
    }

    .hero h1 {
        font-size: 2.8rem;
    }
}

/* ── Users Page ───────────────────────────────────────────── */

/* Main page wrapper — pushes content below the fixed nav */
.page-content {
    padding-top: 80px;
}

/* Shared section container */
.users-section,
.add-user-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
}

.add-user-section {
    margin-top: 1.5rem;
}

.section-title {
    font-family: 'Inter', sans-serif;
    color: #f5a623;
    margin-bottom: 1rem;
}

/* ── Users Table ── */
.table-scroll {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.users-table thead tr {
    background: rgba(245, 166, 35, 0.2);
    text-align: left;
}

.users-table th {
    padding: 12px 16px;
    color: #f5a623;
    font-weight: 600;
}

.users-table td {
    padding: 12px 16px;
    color: #000000;
}

.users-table td.cell-id {
    font-size: 0.85rem;
    word-break: break-all;
}

.users-table td.cell-action {
    text-align: center;
}

.users-table tbody tr {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.users-table .loading-cell {
    padding: 16px;
    color: #0f0e0e;
    text-align: center;
}

/* ── Add User Form ── */
.add-user-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #f5a623;
}

.form-input {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid rgba(245, 166, 35, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    min-width: 200px;
    outline: none;
}

.form-input-email {
    min-width: 220px;
}

.btn-add-user {
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    background: #f5a623;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-add-user:hover {
    opacity: 0.85;
}

.add-user-status {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #4caf50;
}

/* ── Delete Button ── */
.btn-delete {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #e53935;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.15s;
}

.btn-delete:hover {
    background: rgba(229, 57, 53, 0.12);
}

/* ── Users List Custom Styles ── */
.user-name {
    font-weight: 700;
    color: var(--apiary-brown-dark);
}

.user-email {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-left: 8px;
    /* Separation */
}

.apiaries-list {
    list-style-type: disc !important;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 2rem !important;
    /* Visual sublist indentation */
}

.apiaries-list li {
    color: var(--apiary-brown);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.no-apiaries {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.hives-list {
    list-style-type: circle !important;
    margin-top: 0.3rem;
    margin-bottom: 0.5rem;
    padding-left: 2rem !important;
    /* Indent hives under their apiary */
}

.hives-list li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.no-hives {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* ── Login Page ─────────────────────────────────────────────── */

.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-card {
    background: white;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 420px;
}

.login-card .logo {
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.login-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.login-form .form-field {
    gap: 0.4rem;
}

.login-form .form-input {
    width: 100%;
    min-width: unset;
}

.login-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -0.3rem;
}

.login-remember-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    user-select: none;
}

.login-remember-label input[type="checkbox"] {
    accent-color: var(--apiary-brown);
    width: 1rem;
    height: 1rem;
    cursor: pointer;
}

.login-link {
    font-size: 0.9rem;
    color: var(--apiary-brown);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-gentle);
}

.login-link:hover {
    color: var(--apiary-brown-dark);
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 0.9rem;
    border-radius: 50px;
    border: none;
    background: var(--apiary-brown);
    color: var(--cream-nectar);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-gentle);
    box-shadow: 0 10px 25px -10px rgba(93, 64, 55, 0.4);
    margin-top: 0.4rem;
}

.btn-login:hover {
    background: var(--apiary-brown-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(93, 64, 55, 0.5);
}

.login-register-row {
    text-align: center;
    margin-top: 1.2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.login-register-row .login-link {
    margin-left: 0.3rem;
}

.login-divider {
    border: none;
    border-top: 1px solid var(--glass-border);
    margin: 1.5rem 0 1.2rem;
}

/* ── Dashboard Layout ───────────────────────────────────────── */

.dashboard-layout {
    display: flex;
    min-height: 100vh;
}

.dashboard-content-wrapper {
    flex: 1;
    margin-left: 260px;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 80px);
}

.dashboard-sidebar {
    width: 260px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-right: 1px solid var(--glass-border);
    padding: 2rem 1.5rem;
    position: fixed;
    top: 80px;
    /* Aligned below the navbar */
    bottom: 0;
    left: 0;
    overflow-y: auto;
    transition: var(--transition-gentle);
    z-index: 900;
}

.dashboard-main {
    flex: 1;
    padding: 2rem 5%;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sidebar-link {
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-gentle);
    display: flex;
    align-items: center;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(250, 230, 130, 0.4);
    color: var(--apiary-brown-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .dashboard-content-wrapper {
        margin-left: 0;
    }

    .dashboard-sidebar {
        transform: translateX(-100%);
        background: rgba(255, 253, 245, 0.98);
        box-shadow: none;
    }

    .dashboard-sidebar.active {
        transform: translateX(0);
        box-shadow: var(--glass-shadow);
        border-right: none;
    }
}

.dashboard-main {
    padding: 1.5rem 5%;
}

/* ── Dashboard Specific Styles ── */
.dashboard-controls {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.apiary-tabs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.apiary-tabs::-webkit-scrollbar {
    height: 6px;
}

.apiary-tabs::-webkit-scrollbar-thumb {
    background: var(--honey-yellow);
    border-radius: 4px;
}

.apiary-tab {
    padding: 0.8rem 1.2rem;
    background: transparent;
    border: none;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition-gentle);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: center;
}

.apiary-tab:hover,
.apiary-tab.active {
    background: rgba(250, 230, 130, 0.4);
    color: var(--apiary-brown-dark);
    font-weight: 600;
    transform: none;
    box-shadow: none;
}

/* Hives Grid */
.hives-grid {
    position: relative;
    min-height: 200px;
}

.hives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── Modals ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-card {
    background: var(--bg-creme);
    padding: 2.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
    border: 1px solid var(--glass-border);
}

.modal-card h3 {
    margin-bottom: 0.5rem;
    color: var(--apiary-brown-dark);
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ── Apiaries & Hives Management ── */
.apiary-card {
    margin-bottom: 2rem;
    padding: 2rem;
}

.apiary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.apiary-card-header h3 {
    margin-bottom: 0;
    color: var(--apiary-brown-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hive-mini-card {
    background: rgba(250, 230, 130, 0.15);
    border: 1px solid rgba(250, 230, 130, 0.5);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--apiary-brown-dark);
    font-weight: 500;
    transition: var(--transition-gentle);
}

.hive-mini-card:hover {
    background: rgba(250, 230, 130, 0.3);
}

/* Loading State */
.loading-state {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--apiary-brown);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-state::before {
    content: '🐝';
    animation: loader-fly 1.5s infinite ease-in-out alternate;
}

@keyframes loader-fly {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Beehive Card */
.beehive-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition-gentle);
    box-shadow: 0 8px 24px rgba(93, 64, 55, 0.04);
    position: relative;
    overflow: hidden;
}

.beehive-card::before {
    /* Subtly hint at honeycomb shape at top */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--honey-yellow);
    opacity: 0.7;
}

.beehive-card.hive-health-warning::before {
    background: #ef4444;
    /* Red for warning */
}

.beehive-card:hover {
    box-shadow: 0 12px 32px rgba(93, 64, 55, 0.08);
}

.beehive-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.hive-icon {
    font-size: 1.8rem;
    background: var(--cream-nectar);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
}

.hive-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--apiary-brown-dark);
}

/* Stats Structure */
.beehive-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-divider {
    height: 1px;
    background: var(--glass-border);
    width: 100%;
}

.stat-section {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

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

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Indicators */
.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-active {
    background-color: #10b981;
    /* Green */
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.status-inactive {
    background-color: #ef4444;
    /* Red */
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.4);
}

/* Values */
.stat-main-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--apiary-brown-dark);
    line-height: 1.2;
}

.stat-climate-values {
    display: flex;
    gap: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--apiary-brown-dark);
}

.climate-val {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.c-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.stat-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.2rem;
}

/* ── Modals ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-card {
    background: var(--bg-creme);
    padding: 2.5rem;
    border-radius: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(93, 64, 55, 0.15);
    border: 1px solid var(--glass-border);
}

.modal-card h3 {
    margin-bottom: 0.5rem;
    color: var(--apiary-brown-dark);
}

.modal-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* ── Apiaries & Hives Management ── */
.apiary-card {
    margin-bottom: 2rem;
    padding: 2rem;
}

.apiary-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.apiary-card-header h3 {
    margin-bottom: 0;
    color: var(--apiary-brown-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hive-mini-card {
    background: rgba(250, 230, 130, 0.15);
    border: 1px solid rgba(250, 230, 130, 0.5);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--apiary-brown-dark);
    font-weight: 500;
    transition: var(--transition-gentle);
    position: relative;
}

.hive-mini-card:hover {
    background: rgba(250, 230, 130, 0.3);
}

.hive-mini-card .hive-info {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    border-radius: 8px;
}