/* _content/BeerAIWeb/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-sfbmuulofb] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-sfbmuulofb] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Dark gradient background for the entire layout */


.NavButton[b-sfbmuulofb] {
    background: none;
    border: none;
    font-family: 'Aoboshi One', serif;
    font-size: 23px;
    color: #ffffff; /* Changed to white for better visibility on dark background */
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

    .NavButton:hover[b-sfbmuulofb] {
        text-shadow: -0.05px 0.1px 0.2px #ffffff;
    }

.Logo[b-sfbmuulofb] {
    animation: logoopen-b-sfbmuulofb 1s ease-in;
}

.MainDiv[b-sfbmuulofb] {
    display: flex;
    justify-content: center;
}

footer[b-sfbmuulofb] {
    margin-top: auto;
}

.FooterDiv[b-sfbmuulofb] {
    display: flex;
    justify-content: center;
}

    .FooterDiv div[b-sfbmuulofb] {
        margin: 20px;
    }

    .FooterDiv a[b-sfbmuulofb] {
        color: white; /* Changed to white for better visibility on dark background */
    }

@media (max-width: 900px) {
    .MainDiv[b-sfbmuulofb] {
        display: block;
        justify-content: center;
    }
}

@keyframes logoopen-b-sfbmuulofb {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}
/* _content/BeerAIWeb/Components/Pages/BeerAIPage.razor.rz.scp.css */
.ChatBoxContainer[b-zlrfzolkr8] {
    background-color: #2c2f36;
    height: 500px;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    overflow-y: auto;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.Message[b-zlrfzolkr8] {
    display: flex;
    width: 100%;
    margin-bottom: 12px;
}

.user-message[b-zlrfzolkr8] {
    justify-content: flex-end;
}

.bot-message[b-zlrfzolkr8] {
    justify-content: flex-start;
}

.MessageBubble[b-zlrfzolkr8] {
    max-width: 70%;
    padding: 12px 18px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
}

.user-message .MessageBubble[b-zlrfzolkr8] {
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    color: white;
    border-bottom-right-radius: 6px;
    margin-left: auto;
}

.bot-message .MessageBubble[b-zlrfzolkr8] {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    color: #2c2f36;
    border-bottom-left-radius: 6px;
    margin-right: auto;
}

.MessageBubble p[b-zlrfzolkr8] {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
}

/* Thinking indicator styles */
.thinking-bubble[b-zlrfzolkr8] {
    background: linear-gradient(135deg, #ffc107, #ff9800);
    opacity: 0.8;
    animation: pulse-b-zlrfzolkr8 2s ease-in-out infinite;
}

.thinking-indicator[b-zlrfzolkr8] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2c2f36;
    font-weight: 500;
}

.thinking-text[b-zlrfzolkr8] {
    font-size: 14px;
}

.thinking-dots[b-zlrfzolkr8] {
    display: flex;
    gap: 3px;
}

.dot[b-zlrfzolkr8] {
    width: 4px;
    height: 4px;
    background-color: #2c2f36;
    border-radius: 50%;
    animation: thinking-b-zlrfzolkr8 1.4s ease-in-out infinite both;
}

.dot:nth-child(1)[b-zlrfzolkr8] {
    animation-delay: -0.32s;
}

.dot:nth-child(2)[b-zlrfzolkr8] {
    animation-delay: -0.16s;
}

.dot:nth-child(3)[b-zlrfzolkr8] {
    animation-delay: 0s;
}

@keyframes thinking-b-zlrfzolkr8 {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse-b-zlrfzolkr8 {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

.ChatInputContainer[b-zlrfzolkr8] {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
}

.InputWrapper[b-zlrfzolkr8] {
    display: flex;
    gap: 10px;
    align-items: stretch;
    background: linear-gradient(90deg, #e1bee7, #f8bbd9, #ffcc80);
    padding: 8px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.ChatInput[b-zlrfzolkr8] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 14px;
    color: #2c2f36;
    outline: none;
    border-radius: 20px;
    font-weight: 500;
}

    .ChatInput[b-zlrfzolkr8]::placeholder {
        color: #666;
        opacity: 0.8;
    }

.SendButton[b-zlrfzolkr8] {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .SendButton:hover:not(:disabled)[b-zlrfzolkr8] {
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .SendButton:active:not(:disabled)[b-zlrfzolkr8] {
        transform: translateY(0);
    }

    .SendButton:disabled[b-zlrfzolkr8] {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* Custom scrollbar for chat container */
.ChatBoxContainer[b-zlrfzolkr8]::-webkit-scrollbar {
    width: 6px;
}

.ChatBoxContainer[b-zlrfzolkr8]::-webkit-scrollbar-track {
    background: #1a1d23;
    border-radius: 3px;
}

.ChatBoxContainer[b-zlrfzolkr8]::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e91e63, #9c27b0);
    border-radius: 3px;
}

    .ChatBoxContainer[b-zlrfzolkr8]::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #c2185b, #7b1fa2);
    }

/* Avatar circles (optional enhancement) */
.Message[b-zlrfzolkr8]::before {
    content: '';
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #b0bec5;
    flex-shrink: 0;
    margin-top: auto;
}

.user-message[b-zlrfzolkr8]::before {
    order: 2;
    margin-left: 8px;
    margin-right: 0;
}

.bot-message[b-zlrfzolkr8]::before {
    order: 0;
    margin-right: 8px;
    margin-left: 0;
}

/* Responsive design */
@media (max-width: 768px) {
    .ChatBoxContainer[b-zlrfzolkr8] {
        height: 400px;
        padding: 15px;
    }

    .MessageBubble[b-zlrfzolkr8] {
        max-width: 85%;
        padding: 10px 14px;
    }

    .ChatInput[b-zlrfzolkr8] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
/* _content/BeerAIWeb/Components/Pages/Home.razor.rz.scp.css */
.home-container[b-wsvepnt749] {
    background: url('backgroundbeers.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
} 
