/* ===== Omeglee Global Styles ===== */
:root {
    --brand: #075E54;
    --brand-light: #128C7E;
    --brand-accent: #25D366;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f8f9fa;
    color: #1a1a2e;
}
a { color: var(--brand); }
a:hover { color: var(--brand-light); }

/* Navbar */
.navbar-brand { font-weight: 700; font-size: 1.3rem; }

/* Cards */
.card { border-radius: 12px; }
.card-title { color: var(--brand); }

/* Buttons */
.btn-brand {
    background: var(--brand);
    color: #fff;
    border-radius: 50px;
    padding: 10px 28px;
    border: none;
    font-weight: 600;
    transition: background .2s, transform .15s;
}
.btn-brand:hover { background: var(--brand-light); color: #fff; transform: translateY(-1px); }

/* Accordion */
.accordion-button:not(.collapsed) {
    background: #e8f5e9;
    color: var(--brand);
    box-shadow: none;
}
.accordion-button:focus { box-shadow: 0 0 0 3px rgba(7,94,84,.15); }

/* Breadcrumb */
.breadcrumb { font-size: 13px; }

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 16px; }
}

/* ══════════════════════════════════════════
   IMAGE UPLOAD PROGRESS BUBBLE  (v4.5)
══════════════════════════════════════════ */
.img-progress-bubble {
    min-width: 100px;
    padding: 10px 14px !important;
}
.img-progress-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
}
.img-progress-ring {
    position: relative;
    width: 54px;
    height: 54px;
}
.progress-svg {
    width: 54px;
    height: 54px;
    transform: rotate(0deg);
}
.progress-arc {
    transition: stroke-dashoffset 0.3s ease;
    stroke-dasharray: 100 100;
}
.progress-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.progress-label {
    font-size: 11px;
    color: rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
}

/* Protect images from being saved */
.chat-img {
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto;
    -webkit-user-drag: none;
}
.img-wrap {
    position: relative;
    display: inline-block;
}

/* ===== Professional content page polish v5.1 ===== */
body {
    background:
        radial-gradient(circle at 15% 0%, rgba(37,211,102,.12), transparent 28%),
        linear-gradient(135deg, #eefbf6 0%, #f8fafc 60%, #eef2ff 100%);
}
.navbar {
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(7,94,84,.08);
}
.container > .card,
.accordion {
    border: 1px solid rgba(7,94,84,.08) !important;
    border-radius: 20px !important;
    box-shadow: 0 16px 42px rgba(15,23,42,.07) !important;
}
.card-body h2,
.card-body h3,
.card-body h4 {
    letter-spacing: -0.02em;
}
.breadcrumb {
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(7,94,84,.06);
    border-radius: 999px;
    display: inline-flex;
    padding: 8px 14px;
}
.accordion-button {
    border-radius: 14px !important;
}
.btn-brand,
.btn-lg.text-white {
    box-shadow: 0 10px 24px rgba(7,94,84,.16);
}
