.xxtra-prompt {
    display:flex;
    flex-direction: column;
    gap:10px;
    margin-bottom: 20px;
    width: 100%;
    align-items: start;
}
.xxtra-ai-searchbar {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    margin-bottom: 50px;
}
#xxtra-ai-query {
    min-height: 150px;
    overflow-y: hidden;
    resize: none;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
}
#xxtra-ai-refine {
    min-height: 150px;
    overflow-y: hidden;
    resize: none;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
    margin-bottom: 20px;
}
#xxtra-ai-query::placeholder, #xxtra-ai-refine::placeholder {
  opacity: 0.5;
  color: #000000;
}
button#xxtra-ai-search-btn {
    background: #d30000;
    color: #fff;
    font-family: "Womby";
    font-weight: 400;
    font-style: normal;
    padding: 10px 36px;
    border-radius: 100px;
}
#xxtra-ai-loading {
    color: #000000;
    font-family: "Womby";
    font-weight: 400;
    font-size: 30px;
    text-shadow: 5px 5px 0 #d30000, 10px 10px 0 #fcc000;
    animation: shadow-dance 2s infinite;
    margin-bottom: 100px;
}

@keyframes shadow-dance {
    0%, 100% {
        text-shadow: 5px 5px 0 #d30000, 10px 10px 0 #fcc000;
    }
    50% {
        text-shadow: -5px -5px 0 #fcc000, -10px -10px 0 #d30000;
    }
}

#type-container {
    margin-bottom: 10px;
}
#xxtra-ai-search label {
    color: #000000;
}
.form-label {
    font-family: "Mont";
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    font-style: normal;
    font-size: 14px;
    position: relative;
}
#xxtra-genre label, .demographics label, #xxtra-type label {
    color: #000000;
    font-size: 14px;
}

#xxtra-genre, .demographics, #xxtra-type {
    display: flex;
    column-gap: 15px;
    flex-wrap: wrap;
}
.demographics {
    margin-bottom: 20px;
}

.xxtra-ai-buttons {
    margin-top: 10px;
    margin-bottom: 50px;
}
a.xxtra-ai-yes {
    background: #fcc000;
    text-align: center;
    color: #000000;
    font-family: "Womby";
    padding: 12px 20px;
    font-weight: 400;
    border: none;
    border-radius: 100px;
    margin: 0;
}
button.xxtra-ai-nope {
    background: #000000;
    text-align: center;
    color: #ffffff;
    font-family: "Womby";
    padding: 12px 36px;
    font-weight: 400;
    border: none;
    border-radius: 100px;
}
button#xxtra-ai-refine-btn {
    background: #fcc000;
    text-align: center;
    color: #000000;
    font-family: "Womby";
    padding: 12px 36px;
    font-weight: 400;
    border: none;
    border-radius: 100px;
}
#xxtra-voice-btn {
    background: #fcc000;
    text-align: center;
    color: #000000;
    font-family: "Womby";
    padding: 12px 36px;
    font-weight: 400;
    border: none;
    border-radius: 100px;
}

.xxtra-grid {
	display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.xxtra-ai-result-poster {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: start;
    margin-bottom: 100px;
}
.xxtra-ai-result-poster img {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    max-width: 300px;
}
.xxtra-ai-result-poster h3 {
    color: #000000;
    font-size: 16px;
    font-family: "Mont";
    font-weight: 700;
}
.xxtra-ai-result-poster p, .xxtra-ai-result-poster small {
    font-family: "Mont";
}

@media only screen and (max-width: 600px) {
    .xxtra-ai-result-poster {
        flex-direction: column;
        justify-content: start;
        gap: 10px;
    }
}