.llm-industry-block {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    /* Removed background and box-shadow */
    border-radius: 8px;
}

.llm-industry-block label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.llm-industry-block input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

#llm-submit {
    background: rgb(11, 63, 88);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
}

#llm-submit:hover {
    background: rgba(11, 63, 88, 0.8);
}

#llm-loading {
    margin: 1rem 0;
    padding: 1rem;
    background: none; /* Removed background */
    border-radius: 4px;
    text-align: center;
    color: rgb(11, 63, 88); /* Changed to primary color */
}

#llm-loading::after {
    content: '🤖';
    display: block;
    font-size: 2rem;
    margin-top: 0.5rem;
    animation: spin 1.5s linear infinite;
}

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

#llm-output {
    margin-top: 2rem;
}

.llm-output-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid rgb(11, 63, 88);
}

.llm-output-item h2 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.llm-output-item ul, 
.llm-output-item ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.llm-output-item li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.llm-output-item strong {
    color: rgb(11, 63, 88);
}

.llm-output-item p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

#llm-output-key-disruptions, #llm-output-strategies {
    margin-top: 2rem;
    padding: 0;
    /* Remove .llm-output-item styles */
    background: none;
    border-left: none;
}

#llm-output-key-disruptions ul,
#llm-output-strategies ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-left: 0;
}

#llm-output-key-disruptions li,
#llm-output-strategies li {
    background: rgb(11, 63, 88);
    color: white;
    padding: 1.5rem;
    border-radius: 6px;
    list-style: none;
    margin-bottom: 0;
    opacity: 0;
    will-change: transform, opacity;
}

#llm-output-key-disruptions li{
    transform: translateY(100px);
}

#llm-output-key-disruptions li strong,
#llm-output-strategies li strong {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

#llm-output-key-disruptions li span {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

@media (min-width: 768px) {
    #llm-output-key-disruptions ul {
        grid-template-columns: repeat(2, 1fr);
    }
    /* Keep strategies in one column even on larger screens */
    #llm-output-strategies ul {
        grid-template-columns: 1fr;
    }
}

#llm-caveat{
    margin-top: 1rem;
    font-size: 0.8rem;
    text-align: center;
    color: #666;
}

#llm-output-strategies li {
    transform-origin: left;
    will-change: width, opacity;
}