/* Estilos para la página de hackathones */

/* Carrusel */
.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-item {
    flex-shrink: 0;
    padding: 0.5rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 0.5rem;
}

.carousel-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background-color: rgba(107, 114, 128, 0.3);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    padding: 0;
}

.carousel-indicator:hover {
    background-color: rgba(107, 114, 128, 0.5);
}

.carousel-indicator.active {
    background-color: rgb(99, 102, 241);
    width: 0.75rem;
    height: 0.75rem;
}

/* Paginación */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background: transparent;
    color: var(--color-foreground);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
    font-weight: 500;
}

.page-number:hover:not(.active) {
    background-color: rgba(59, 130, 246, 0.1);
}

.page-number.active {
    background-color: #3b82f6;
    color: white;
} 