#moa-widget-container {
    position: fixed;
    bottom: 40px;
    right: 50px;
    z-index: 999999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    pointer-events: none !important;
}

#moa-fab {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.25s ease;
    padding: 0;
    box-shadow: none;
    pointer-events: auto !important;
    z-index: 1;
}

#moa-fab:hover {
    transform: scale(1.08);
}

#moa-fab img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#moa-chat-box {
    flex-direction: column;
    width: 380px;
    height: 70vh;
    max-height: 700px;
    border-radius: 20px;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    position: absolute;
    bottom: 90px;
    right: 0;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none !important;
    visibility: hidden; /* FIX: Prevents hidden chat box from causing scrollbars */
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border: 1px solid rgba(255,255,255,0.4);
}

#moa-chat-box.open {
    display: flex !important;
    opacity: 1;
    pointer-events: auto !important;
    visibility: visible;
    transform: translateY(0);
}

.moa-header {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 16px 18px;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-between;
}

.moa-header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.moa-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.moa-icon-btn {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.moa-icon-btn:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.1);
}

.moa-icon-btn.active {
    color: #60a5fa;
    background: rgba(96,165,250,0.12);
}

.moa-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
    color: white;
    overflow: hidden;
}

.moa-messages {
    flex: 1 1 auto;
    min-height: 0;
    padding: 18px;
    overflow-y: auto;
    background: rgba(248,250,252,0.7);
    font-size: 15px;
}

.moa-selected-files,
.moa-upload-status,
.moa-input-area {
    flex-shrink: 0; /* Keeps input controls fixed at the bottom */
}

.moa-msg {
    margin-bottom: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    max-width: 80%;
    line-height: 1.45;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(6px);
    animation: moaFadeIn 0.25s forwards;
    white-space: pre-wrap;
    word-break: break-word;
}

@keyframes moaFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.moa-msg.user {
    background: #2563eb;
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.moa-msg.agent {
    background: white;
    color: #1e293b;
    border-bottom-left-radius: 4px;
}

.moa-attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 9px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
}

.moa-msg.agent .moa-attachment {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.moa-attachment-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    font-size: 15px;
    flex-shrink: 0;
}

.moa-msg.agent .moa-attachment-icon {
    background: #e2e8f0;
}

.moa-attachment-details {
    min-width: 0;
    flex: 1;
}

.moa-attachment-name {
    font-weight: 600;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.moa-attachment-meta {
    font-size: 11px;
    opacity: 0.72;
    margin-top: 2px;
}

.moa-selected-files {
    display: none;
    padding: 8px 12px 0;
    background: rgba(255,255,255,0.9);
}

.moa-selected-files.visible {
    display: block;
}

.moa-selected-file {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    margin-bottom: 6px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    font-size: 12px;
}

.moa-selected-file-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.moa-selected-file-size {
    color: #64748b;
    white-space: nowrap;
}

.moa-remove-file {
    border: none;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    padding: 2px 4px;
    line-height: 1;
}

.moa-remove-file:hover {
    color: #dc2626;
}

.moa-typing-dots {
    display: inline-flex;
    gap: 4px;
}

.moa-typing-dots span {
    width: 6px;
    height: 6px;
    background: #94a3b8;
    border-radius: 50%;
    animation: moaBlink 1.2s infinite ease-in-out;
}

.moa-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.moa-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes moaBlink {
    0%, 80%, 100% {
        opacity: 0.3;
    }
    40% {
        opacity: 1;
    }
}

.moa-input-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,0.9);
    border-top: 1px solid rgba(0,0,0,0.05);
}

        .moa-input-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* Textarea */
.moa-input-area textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 12px 52px 12px 14px;
    resize: none;
    min-height: 52px;
    max-height: 140px;
    outline: none;
    font-size: 16px;
    background: white;
    box-sizing: border-box;
}

.moa-input-area textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96,165,250,0.12);
}
        
        /* Wrapper for textarea + send button */
.moa-input-wrapper {
    position: relative;
    width: 100%;
}

/* Send button INSIDE the textarea */
/* Send button inside textarea */
.moa-send-inside {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.moa-send-inside svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Divider */
.moa-divider {
    border: none;
    border-top: 1px solid darkgrey;
    margin: 4px 0;
}

/* Bottom action bar */
.moa-bottom-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Bottom action buttons */
.moa-action-btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.moa-action-btn:hover {
    background: #e2e8f0;
    transform: scale(1.04);
}

.moa-tool-btn {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.moa-tool-btn:hover {
    background: #e2e8f0;
    transform: scale(1.04);
}

.moa-tool-btn.active {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fecaca;
    animation: moaPulse 1.2s infinite;
}

@keyframes moaPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220,38,38,0.20);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(220,38,38,0);
    }
}

.moa-send-btn {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3a86ff, #2563eb);
    color: white;
    border: none;
    border-radius: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.moa-send-btn:hover {
    transform: scale(1.05);
}

.moa-send-btn:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

#moa-send-btn svg {
    width: 21px;
    height: 21px;
    display: block;
    fill: currentColor;
}

.moa-upload-status {
    padding: 0 12px 8px;
    font-size: 11px;
    color: #64748b;
    background: rgba(255,255,255,0.9);
}

.moa-upload-status.error {
    color: #dc2626;
}

.moa-send-ai rect {
    fill: white;
    transform-origin: center;
    animation: moaPulseBars 1.4s ease-in-out infinite;
}

.moa-send-ai rect:nth-child(2) {
    animation-delay: 0.2s;
}

.moa-send-ai rect:nth-child(3) {
    animation-delay: 0.4s;
}


/* =========================================================
   MYOPSAGENT SCHEDULING UI
========================================================= */

.moa-scheduling-picker {
    width: calc(100% - 42px);
    margin: 8px 0 14px 8px;
    padding: 14px;
    border-radius: 18px;

    background:
        rgba(15, 23, 42, 0.82);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);
}


.moa-scheduling-picker-header {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 12px;
}


.moa-scheduling-picker-title {
    font-size: 13px;
    font-weight: 650;
    color: #f8fafc;
}


.moa-scheduling-picker-date {
    font-size: 11px;
    color: #94a3b8;
}


.moa-scheduling-slot-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 7px;

    max-height: 220px;

    overflow-y: auto;

    padding-right: 2px;
}


.moa-scheduling-slot {
    appearance: none;
    border: 1px solid rgba(255,255,255,.09);

    background:
        rgba(255,255,255,.055);

    border-radius: 11px;

    padding:
        9px 6px;

    cursor: pointer;

    display: flex;
    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 2px;

    transition:
        transform .15s ease,
        background .15s ease,
        border-color .15s ease;

    min-width: 0;
}


.moa-scheduling-slot:hover {
    transform: translateY(-1px);

    background:
        rgba(255,255,255,.10);

    border-color:
        rgba(255,255,255,.18);
}


.moa-scheduling-slot:active {
    transform: scale(.97);
}


.moa-scheduling-slot:disabled {
    opacity: .4;
    cursor: default;
    transform: none;
}


.moa-scheduling-slot-time {
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
}


.moa-scheduling-slot-staff {
    width: 100%;

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    text-align: center;

    font-size: 9px;

    color: #94a3b8;
}


.moa-scheduling-service-grid {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 10px;
}


.moa-scheduling-service-option {
    appearance: none;

    width: 100%;

    text-align: left;

    border:
        1px solid rgba(255,255,255,.09);

    background:
        rgba(255,255,255,.055);

    color:
        #f8fafc;

    border-radius:
        11px;

    padding:
        10px 12px;

    font-size:
        12px;

    cursor:
        pointer;
}


.moa-scheduling-service-option:hover {
    background:
        rgba(255,255,255,.10);
}

@keyframes moaPulseBars {
    0%, 100% { transform: scaleY(1); opacity: 0.9; }
    50% { transform: scaleY(1.6); opacity: 1; }
}


@media (max-width: 480px) {

    #moa-chat-box {
        margin-top: 15px;

        /*
         * IMPORTANT:
         * Do NOT use touch-action:none on the whole chat.
         *
         * It prevents the messages area and scheduling
         * pickers from being naturally scrolled on mobile.
         */
        touch-action: auto;

        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;

        width: 100%;

        /*
         * dvh is more reliable on modern mobile browsers
         * because it accounts for browser address bars.
         */
        height: 70vh;

        max-height: 100vh;

        border-radius: 18px 18px 0 0;

        display: flex;
        flex-direction: column;

        overflow: hidden;
    }


    #moa-chat-box.expanded {
        height: 100vh;
    }


    /*
     * Only the drag handle needs to suppress normal
     * browser touch gestures while being dragged.
     */
    .moa-drag-handle {
        position: relative;

        width: 50px;
        height: 6px;

        background: #cbd5e1;

        border-radius: 5px;

        margin: 12px auto;

        cursor: grab;

        touch-action: none;

        flex-shrink: 0;
    }


    .moa-drag-handle::before {
        content: "";

        position: absolute;

        top: -15px;
        bottom: -15px;
        left: -20px;
        right: -20px;

        background: transparent;
    }


    /*
     * This is the actual scrolling viewport.
     */
    .moa-messages {
        flex: 1 1 auto;

        min-height: 0;

        overflow-y: auto;
        overflow-x: hidden;

        padding-bottom: 24px;

        /*
         * Explicitly permit vertical finger scrolling.
         */
        touch-action: pan-y;

        /*
         * Smooth/native scrolling on iPhone/iPad.
         */
        -webkit-overflow-scrolling: touch;

        /*
         * Keep scrolling contained inside the chat.
         */
        overscroll-behavior-y: contain;
    }


    /*
     * Scheduling picker must remain a normal part
     * of the scrolling message flow.
     */
    .moa-scheduling-picker {
        display: block;

        width: calc(100% - 20px);

        max-width: calc(100% - 20px);

        margin: 8px 10px 14px;

        box-sizing: border-box;

        flex-shrink: 0;

        visibility: visible;

        overflow: visible;
    }


    .moa-scheduling-slot-grid {
        display: grid;

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        gap: 7px;

        width: 100%;

        max-height: 260px;

        overflow-y: auto;
        overflow-x: hidden;

        touch-action: pan-y;

        -webkit-overflow-scrolling: touch;
    }


    .moa-scheduling-slot {
        min-width: 0;

        width: 100%;

        box-sizing: border-box;

        touch-action: manipulation;
    }


    .moa-input-area {
        position: relative;

        bottom: auto;
        left: auto;
        right: auto;

        background: #fff;

        padding: 12px;

        border-top:
            1px solid #e2e8f0;

        flex-shrink: 0;
    }


    .moa-bottom-actions {
        grid-template-columns:
            repeat(4, 1fr);

        gap: 8px;
    }


    .moa-action-btn {
        height: 42px;

        font-size: 16px;
    }
}


/* =========================================================
   ASK AI LAUNCHER
   Circle → expand to text width → hold 2 sec → collapse
   ========================================================= */

#moa-fab.moa-ask-launcher {
    --moa-avatar-size: 60px;
    --moa-label-width: 80px;

    position: relative;

    width: var(--moa-avatar-size);
    height: var(--moa-avatar-size);
    min-width: var(--moa-avatar-size);
    min-height: var(--moa-avatar-size);

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: transparent;
    color: #fff;

    overflow: visible;
    isolation: isolate;

    cursor: pointer;

    transform: none;
    box-shadow: none;
}


/* =========================================================
   EXTENDING BACKGROUND

   Normally exactly the size of the circular avatar.
   ========================================================= */

#moa-fab.moa-ask-launcher::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: var(--moa-avatar-size);
    height: var(--moa-avatar-size);

    border-radius: 999px;

    background: linear-gradient(110deg, #164e63, #0e7490);

    border: 1px solid rgba(255,255,255,.22);

    box-sizing: border-box;

    box-shadow: 0 8px 24px rgba(8,47,73,.24);

    z-index: -1;

    pointer-events: none;
}


#moa-fab.moa-ask-launcher:hover::before {
    box-shadow: 0 10px 30px rgba(8,145,178,.35);
}


#moa-fab.moa-ask-launcher:focus-visible {
    outline: 3px solid #38bdf8;
    outline-offset: 5px;
}


/* =========================================================
   LABEL
   ========================================================= */

#moa-fab.moa-ask-launcher .moa-ask-label {
    position: absolute;

    top: 0;
    right: var(--moa-avatar-size);

    width: var(--moa-label-width);
    height: var(--moa-avatar-size);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    box-sizing: border-box;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    color: #fff;

    opacity: 0;

    transform: translateX(8px);

    pointer-events: none;

    overflow: hidden;
}


/* =========================================================
   AVATAR
   ========================================================= */

#moa-fab.moa-ask-launcher .moa-ask-avatar {
    position: relative;

    display: grid;
    place-items: center;

    width: var(--moa-avatar-size);
    height: var(--moa-avatar-size);

    overflow: hidden;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.18);

    font: 600 24px/1 system-ui, sans-serif;

    pointer-events: none;
}


#moa-fab.moa-ask-launcher .moa-ask-avatar img {
    display: block;

    width: 70%;
    height: 70%;

    border-radius: 50%;

    object-fit: contain;
}


/* =========================================================
   SPARKLES
   ========================================================= */

#moa-fab.moa-ask-launcher .moa-ask-dust {
    position: absolute;
    inset: 0;

    overflow: visible;

    pointer-events: none;
}


#moa-fab.moa-ask-launcher .moa-ask-dust i {
    position: absolute;

    left: 8px;
    top: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #67e8f9;

    box-shadow:
        0 0 7px rgba(103,232,249,.8);

    opacity: 0;
}


#moa-fab .moa-ask-dust i:nth-child(1) {
    --dx: -94px;
    --dy: -42px;
    --delay: .15s;
}

#moa-fab .moa-ask-dust i:nth-child(2) {
    --dx: -112px;
    --dy: -16px;
    --delay: .25s;
}

#moa-fab .moa-ask-dust i:nth-child(3) {
    --dx: -90px;
    --dy: 35px;
    --delay: .35s;
}

#moa-fab .moa-ask-dust i:nth-child(4) {
    --dx: -62px;
    --dy: -56px;
    --delay: .20s;
}

#moa-fab .moa-ask-dust i:nth-child(5) {
    --dx: -108px;
    --dy: 51px;
    --delay: .40s;
}

#moa-fab .moa-ask-dust i:nth-child(6) {
    --dx: -45px;
    --dy: 56px;
    --delay: .30s;
}


/* =========================================================
   INITIAL REVEAL

   Approx:
   0.00 → 0.40 sec = expand
   0.40 → 2.40 sec = remain open
   2.40 → 3.00 sec = collapse
   ========================================================= */

#moa-fab.moa-ask-reveal::before {
    animation: moaAskExtend 3s ease-in-out forwards;
}


#moa-fab.moa-ask-reveal .moa-ask-label {
    animation: moaAskLabel 3s ease-in-out forwards;
}


#moa-fab.moa-ask-reveal .moa-ask-dust i {
    animation: moaAskDust 1.6s ease-out var(--delay) both;
}


/* =========================================================
   BACKGROUND WIDTH
   ========================================================= */

@keyframes moaAskExtend {

    0% {
        width: var(--moa-avatar-size);
    }

    14% {
        width:
            calc(
                var(--moa-avatar-size) +
                var(--moa-label-width)
            );
    }

    /*
     * Hold fully open for roughly two seconds.
     */
    80% {
        width:
            calc(
                var(--moa-avatar-size) +
                var(--moa-label-width)
            );
    }

    100% {
        width: var(--moa-avatar-size);
    }
}


/* =========================================================
   LABEL
   ========================================================= */

@keyframes moaAskLabel {

    0%,
    8% {
        opacity: 0;

        transform:
            translateX(8px);
    }

    17% {
        opacity: 1;

        transform:
            translateX(0);
    }

    75% {
        opacity: 1;

        transform:
            translateX(0);
    }

    84%,
    100% {
        opacity: 0;

        transform:
            translateX(8px);
    }
}


/* =========================================================
   SPARKLES
   ========================================================= */

@keyframes moaAskDust {

    0% {
        opacity: 0;

        transform:
            translate(0,0)
            scale(.4);
    }

    15% {
        opacity: .95;
    }

    55% {
        opacity: .65;
    }

    100% {
        opacity: 0;

        transform:
            translate(
                var(--dx),
                var(--dy)
            )
            scale(.15);
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    #moa-fab.moa-ask-reveal::before,
    #moa-fab.moa-ask-reveal .moa-ask-label,
    #moa-fab.moa-ask-reveal .moa-ask-dust i {
        animation: none;
    }
}

/* =========================================================
   SMART QUICK ACTIONS
   ========================================================= */

.moa-quick-actions {
    display: none;
    align-items: center;
    gap: 7px;
    padding: 9px 12px 10px;
    align-self: flex-start;
    max-width: 100%;
    width: 100%;
    flex-wrap: nowrap; /* important */
    
    /* ADD THESE TWO PROPERTIES */
    box-sizing: border-box;
    min-width: 0;

    background: rgba(255,255,255,.92);
    border-top: 1px solid rgba(15,23,42,.05);

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.moa-quick-actions::-webkit-scrollbar {
    display: none;
}

.moa-quick-actions.visible {
    display: flex;
}

.moa-quick-action {
    appearance: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    flex: 0 0 auto;

    min-height: 34px;

    padding: 7px 13px;

    border: 1px solid #dbe4ee;
    border-radius: 999px;

    background: #fff;

    color: #334155;

    font: 600 12px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    white-space: nowrap;

    cursor: pointer;

    box-shadow: 0 1px 3px rgba(15,23,42,.05);

    transition:
        transform .18s ease,
        background .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.moa-quick-action:hover {
    background: #f8fafc;
    border-color: #94a3b8;

    transform: translateY(-1px);

    box-shadow: 0 3px 8px rgba(15,23,42,.08);
}

.moa-quick-action:active {
    transform: translateY(0);
}

.moa-quick-action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 15px;
    height: 15px;

    font-size: 11px;
    font-weight: 700;

    color: #0e7490;
}

.moa-quick-action-label {
    display: inline-block;
}

@media (max-width: 480px) {
    .moa-quick-actions {
        gap: 7px;
        padding: 9px 12px 10px;
    }

    .moa-quick-action {
        min-height: 38px;
        padding: 9px 14px;
        font-size: 12px;
    }
}