﻿:root {
    --primary: #0d6efd;
    --primary-light: #e7f0ff;
    --accent: #ff9800;
    --accent2: #ff5722;
    --accent3: #4caf50;
    --dark: #1e293b;
    --gradient: linear-gradient(135deg, #0d6efd, #4caf50);
}

/* Base */
body {
    background: #eef3ff;
    font-family: 'Segoe UI', sans-serif;
    padding: 24px;
}

/* Navbar (themed) */
.navbar {
    background: linear-gradient(90deg, rgba(13,110,253,0.06), rgba(76,175,80,0.04));
    border-bottom: 3px solid rgba(13,110,253,0.12);
    padding: 12px 0;
    box-shadow: 0 4px 18px rgba(16,24,40,0.04);
}

.navbar-brand {
    color: var(--primary) !important;
    font-weight: 800;
    letter-spacing: 0.4px;
}

.nav-link {
    color: rgba(30,41,59,0.85);
}

    .nav-link:hover {
        color: var(--accent2) !important;
        font-weight: 600;
    }

/* Hero */
.hero-section {
    padding: 40px;
    background: linear-gradient(180deg,#ffffff 0%, #f7fbff 100%);
    border-radius: 16px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.06);
    border-left: 6px solid var(--primary);
    color: #1e293b;
}

/* Feature cards */
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 18px rgba(0,0,0,0.04);
    border-top: 4px solid var(--accent3);
    transition: 0.28s ease;
}

    .feature-card:hover {
        transform: translateY(-6px);
        border-top-color: var(--accent2);
    }

.card-lite {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--primary-light);
    transition: 0.2s;
}

    .card-lite:hover {
        border-color: var(--primary);
    }

button.btn-primary {
    background: var(--primary);
    border: none;
}

    button.btn-primary:hover {
        background: #0b5ed7;
    }

footer {
    background: var(--primary-light);
    color: var(--dark);
}

/* Editor panel */
.editor-panel {
    position: fixed;
    right: 18px;
    top: 88px;
    width: 380px;
    height: 70vh;
    background: linear-gradient(180deg,#ffffff,#fbfeff);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(8,15,41,0.08);
    padding: 12px;
    z-index: 2200;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
}

    .editor-panel textarea {
        width: 100%;
        height: 100%;
        resize: vertical;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #e6edf2;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, "Roboto Mono", monospace;
        font-size: 13px;
        background: linear-gradient(180deg,#fff,#fbfeff);
    }

.editor-controls {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: space-between
}

/* Small helpers */
.badge-status {
    font-size: 0.9rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
}

.timeline li {
    margin-bottom: 10px;
}

@media (max-width:1100px) {
    .editor-panel {
        position: static;
        width: auto;
        height: 260px;
        margin-top: 16px
    }
}


.tracking-popup {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
    z-index: 3000;
    display: none
}

    .tracking-popup.show {
        display: block;
        animation: fadeIn .22s ease-out
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.tracking-spinner {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 3px solid rgba(13,110,253,0.15);
    border-top-color: #0d6efd;
    animation: spin 1s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}





<style >
/* Contact card responsive grid that fits in window */
.hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 12px;
    align-items: start
}

.hub-card {
    background: linear-gradient(180deg,#fff,#fbfeff);
    border-radius: 10px;
    padding: 12px;
    border: 1px solid rgba(13,110,253,0.04);
    box-shadow: 0 6px 18px rgba(2,6,23,0.03);
    min-height: 120px
}

.hub-title {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 6px
}

    .hub-title i {
        font-size: 18px;
        color: var(--primary)
    }

.hub-meta {
    font-size: 0.95rem;
    color: var(--dark)
}

    .hub-meta a {
        color: var(--primary);
        text-decoration: none
    }

@media (max-width:600px) {
    .card.card-lite {
        padding: 10px
    }

    .hub-meta {
        font-size: 0.92rem
    }
}

</style >