.sommelier-full-page {
    background: radial-gradient(circle at top, #fdfdfd 0%, #f4f4f4 100%); /* Subtle depth */
    min-height: 600px;
}

.ai-input-group {
    max-width: 700px;
    margin: 50px auto;
    position: relative;
    background: white;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
    display: flex;
    align-items: flex-end; /* Keeps button at the bottom right */
    border: 1px solid #eee;
}

#ai-prompt {
    width: 100%;
    border: none;
    padding: 27px;
    padding-bottom: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
    resize: none;
    min-height: 80px;
    outline: none;
    background: transparent;
}

#ai-submit {
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    margin-bottom: 10px; /* Aligns with text flow */
    margin-right: 10px;
}



/* Subtle "Mist" Background Animation for the Header */
.sommelier-header {
    position: relative;
    overflow: hidden;
}

.sommelier-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
    animation: drift 20s infinite linear;
    z-index: -1;
}

div#ai-results-container {
background-color: #f8fbff;
}

@keyframes drift {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


@media( max-width: 768px) {
    .ai-input-group {
    max-width: 90vw;
    margin: 50px auto;
    position: revert;
    background: white;
    padding: 10px;
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: list-item;
    align-items: flex-end;
    border: 1px solid #eee;
}
}