/* Estilos principales del contenedor */
body .sk-instagram-feed {
    background-color: transparent !important;
    font-family: var(--bs-body-font-family) !important;
    padding: 2rem 0;
    width: 100% !important;
}

/* Configuración del Swiper */
.swiper-container.swiper-layout-slider {
    width: 100% !important;
    overflow: hidden !important;
}

.swiper-container.swiper-layout-slider .swiper-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.swiper-container.swiper-layout-slider .swiper-slide {
    width: calc(33.333% - 10px) !important;
    flex-shrink: 0 !important;
    margin: 0 5px !important;
}

/* Contenedor del perfil de usuario */
body .instagram-user-root-container {
    margin-bottom: 2rem;
}

/* Imagen de perfil */
body .sk-instagram-profile-pic_container img {
    border-radius: 50% !important;
    width: 120px !important;
    height: 120px !important;
    margin: 0 auto 1rem !important;
    display: block !important;
    border: 3px solid var(--bs-primary) !important;
}

/* Nombre de usuario */
body .sk-ig-profile-usename {
    color: var(--bs-dark) !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    font-family: var(--bs-body-font-family) !important;
}

/* Estadísticas */
body .sk-ig-profile-counts {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin: 1rem 0 !important;
    color: var(--bs-dark) !important;
}

/* Descripción del perfil */
body .bio-description {
    text-align: center !important;
    color: var(--bs-dark) !important;
    margin: 1rem 0 !important;
}

/* Botón Seguir */
body .instagram-user-container {
    background-color: var(--bs-primary) !important;
    border: none !important;
    padding: 0.5rem 2rem !important;
    border-radius: 0.25rem !important;
    transition: all 0.3s ease !important;
    color: #ffffff !important;
}

body .instagram-user-container:hover {
    background-color: var(--bs-primary-dark) !important;
    transform: translateY(-2px) !important;
}

/* Items del feed */
body .sk-instagram-feed-item {
    border-radius: 0.5rem !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    margin: 5px !important;
}

body .sk-instagram-feed-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}

/* Overlay al pasar el mouse */
body .sk-ig-post-hover {
    background-color: rgba(0,0,0,0.5) !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
    border-radius: 0.5rem !important;
}

body .sk-instagram-feed-item:hover .sk-ig-post-hover {
    opacity: 1 !important;
}

/* Botones de navegación */
body .swiper-button-next,
body .swiper-button-prev {
    background-color: rgba(255,255,255,0.9) !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}

body .swiper-button-next:hover,
body .swiper-button-prev:hover {
    background-color: #fff !important;
}

/* Ajustes responsive */
@media (max-width: 768px) {
    body .sk-instagram-feed-item {
        width: calc(50% - 10px) !important;
    }
}

@media (max-width: 480px) {
    body .sk-instagram-feed-item {
        width: calc(100% - 10px) !important;
    }
} 