
/* llm-icons.css */
.llm-icon-item {
    text-align: center;
    padding: 10px;
    margin: 0 15px !important; /* Consistent margins for spacing */
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.llm-icon-item:hover {
    transform: translateY(-5px);
}

.icon-name {
    font-size: 14px;
    color: #4F5767;
    margin: 5px 0 0 0;
    font-weight: 500;
}

/* Fix for slick-slider issues */
#llm-icons-slider.slick-slider {
    min-height: 150px;
    display: block !important;
}

#llm-icons-slider .slick-track {
    min-width: 800px !important;
    display: flex !important;
    align-items: center !important;
}

#llm-icons-slider .slick-list {
    overflow: hidden !important;
}

/* Icon wrapper for Lobehub icons */
.icon-wrapper {
    height: 60px !important;
    width: 100px !important; /* Wider to maintain spacing */
    min-width: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 8px !important;
    padding: 10px !important;
}

/* Icon container for direct SVG files */
.icon-container {
    min-width: 100px !important; /* Wider to maintain spacing */
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px !important;
}

/* Global size normalization for Lobehub SVG icons */
.icon-wrapper svg {
    height: 35px !important;
    width: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Logo-specific adjustments for Lobehub */
/* .icon-wrapper svg[class*="Claude"],
.icon-wrapper svg[class*="Anthropic"] {
    height: 30px !important;
}

.icon-wrapper svg[class*="Bedrock"],
.icon-wrapper svg[class*="VertexAI"] {
    height: 38px !important;
} */

/* For img-based direct SVGs */
.icon-container img {
    height: 35px !important;
    width: auto !important;
    max-width: none !important;
    max-height: none !important;
    display: block !important;
}

/* Logo-specific adjustments for direct SVGs */
/* .icon-container img[src*="claude.svg"],
.icon-container img[src*="anthropic.svg"] {
    height: 30px !important;
}

.icon-container img[src*="amazon-bedrock.svg"],
.icon-container img[src*="vertex-ai.svg"] {
    height: 38px !important;
} */

/* Fix for slick slider spacing */
.slick-slide {
    margin: 0 5px !important;
}
