/**
 * CockpitOS Light - Chatbot Layout: Specific Results Styles
 * 
 * Verantwortlichkeit: Styling für spezifische Suchen (größere Cards)
 * 
 * @package CockpitOS_Light_Theme
 * @version 1.0.0
 */

/* Specific Results Cards */
.chatbot-message[data-message-type="specific"] .cockpit-os-chatbot-cards--specific {
    margin-top: 1.5rem;
}

.chatbot-message[data-message-type="specific"] .cockpit-os-chatbot-cards--specific .cockpit-os-chatbot-card {
    max-width: 400px;
}

/* 2 Cards: Side by side */
.chatbot-message[data-message-type="specific"] .cockpit-os-chatbot-cards--specific .chatbot-cards__container--grid:has(.cockpit-os-chatbot-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(300px, 400px));
    justify-content: center;
}

/* Single Card: Centered, larger */
.chatbot-message[data-message-type="specific"] .cockpit-os-chatbot-cards--specific .chatbot-cards__container--grid:has(.cockpit-os-chatbot-card:only-child) {
    grid-template-columns: minmax(300px, 450px);
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .chatbot-message[data-message-type="specific"] .cockpit-os-chatbot-cards--specific .chatbot-cards__container--grid {
        grid-template-columns: 1fr !important;
    }
}


