.messagebleft-container {
    transition: all 500ms ease;
    transition-property: top, right, bottom, left, opacity, transform, box-shadow;
    font-family: "Poppins", Roboto, sans-serif;
    font-size: 14px;
    min-height: 14px;
    background: linear-gradient(135deg, #00150b 0%, #003b1f 100%);
    border: 1px solid #00ff9c;
    box-shadow: 0 0 18px rgba(0, 255, 156, 0.28);
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: #eaffef;
    line-height: 22px;
    padding: 16px 22px;
    bottom: -100px;
    top: -100px;
    opacity: 0;
    z-index: 9999999999;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.messagebleft-container p {
    margin: 0;
    padding: 0;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.messagebleft-container .action {
    background: linear-gradient(135deg, #00c853 0%, #00ff9c 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00150b;
    margin: 0 0 0 12px;
    padding: 8px 14px;
    min-width: max-content;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.25);
    transition: all 0.3s ease;
}

.messagebleft-container .action:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(0, 255, 156, 0.45);
    filter: brightness(1.05);
}

/* tambahan efek glow tipis */
.messagebleft-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(0,255,156,0.08) 50%,
        rgba(255,255,255,0) 100%
    );
}

/* desktop */
@media (min-width: 640px) {
    .messagebleft-container {
        min-width: 320px;
        max-width: 580px;
        display: inline-flex;
        margin: 20px;
    }
}

/* mobile */
@media (max-width: 640px) {
    .messagebleft-container {
        left: 12px;
        right: 12px;
        width: auto;
        max-width: calc(100% - 24px);
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 13px;
        line-height: 20px;
    }

    .messagebleft-container .action {
        padding: 7px 12px;
        font-size: 11px;
    }
}

.messagebleft-pos.bottom-center {
    top: auto !important;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.messagebleft-pos.bottom-left {
    top: auto !important;
    bottom: 0;
    left: 0;
}

.messagebleft-pos.bottom-right {
    top: auto !important;
    bottom: 0;
    right: 0;
}

.messagebleft-pos.top-left {
    bottom: auto !important;
    top: 0;
    left: 0;
}

.messagebleft-pos.top-center {
    bottom: auto !important;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.messagebleft-pos.top-right {
    bottom: auto !important;
    top: 0;
    right: 0;
}

@media (max-width: 640px) {
    .messagebleft-pos.bottom-center,
    .messagebleft-pos.top-center {
        left: 12px;
        right: 12px;
        transform: none;
    }

    .messagebleft-pos.bottom-left,
    .messagebleft-pos.bottom-right {
        left: 12px;
        right: 12px;
    }

    .messagebleft-pos.top-left,
    .messagebleft-pos.top-right {
        left: 12px;
        right: 12px;
    }
}