/* WhatsApp Green Palette & Shoelace Overrides */
:root {
    --sl-color-primary-50: #f0fdf4;
    --sl-color-primary-100: #dcfce7;
    --sl-color-primary-200: #bbf7d0;
    --sl-color-primary-300: #86efac;
    --sl-color-primary-400: #4ade80;
    --sl-color-primary-500: #22c55e;
    --sl-color-primary-600: #25D366;
    --sl-color-primary-700: #16a34a;
    --sl-color-primary-800: #15803d;
    --sl-color-primary-900: #166534;
    --sl-color-primary-950: #052e16;

    --sl-focus-ring-color: rgba(37, 211, 102, 0.35);
    --sl-input-border-radius-medium: 12px;
    --sl-button-font-size-medium: 14px;
}

body {
    background-color: #fff;
    color: #1c1c1c;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Realistic Chat Styling */
.chat-bg {
    background-color: #e5ddd5;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-blend-mode: overlay;
}

.bubble {
    position: relative;
    max-width: 85%;
    padding: 8px 12px;
    font-size: 14px;
    box-shadow: 0 1px 0.5px rgba(0,0,0,0.13);
}

.bubble-in {
    background: white;
    border-radius: 0 8px 8px 8px;
    align-self: flex-start;
}

.bubble-in::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 12px 0;
    border-color: transparent white transparent transparent;
}

.bubble-out {
    background: #dcf8c6;
    border-radius: 8px 0 8px 8px;
    align-self: flex-end;
}

.bubble-out::before {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 12px 0 0;
    border-color: #dcf8c6 transparent transparent transparent;
}

.platform-pill {
    background: #fff;
    border: 1px solid #e4e4e7;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.platform-pill:hover {
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 102, 0.1);
}
